@ignos/api-client 20260723.192.1-alpha → 20260727.194.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 +213 -240
- package/lib/ignosportal-api.js +4 -383
- package/package.json +1 -1
- package/src/ignosportal-api.ts +232 -622
package/src/ignosportal-api.ts
CHANGED
|
@@ -21918,6 +21918,8 @@ export class MesLinksClient extends AuthorizedApiBase implements IMesLinksClient
|
|
|
21918
21918
|
export interface IMesOrMoveClient {
|
|
21919
21919
|
|
|
21920
21920
|
getPrintableLabels(request: GeneratePrintableLabel): Promise<DownloadDto>;
|
|
21921
|
+
|
|
21922
|
+
postListProductionOrders(request: ListProductionOrdersRequest): Promise<ProductionOrderListDto[]>;
|
|
21921
21923
|
}
|
|
21922
21924
|
|
|
21923
21925
|
export class MesOrMoveClient extends AuthorizedApiBase implements IMesOrMoveClient {
|
|
@@ -21968,85 +21970,9 @@ export class MesOrMoveClient extends AuthorizedApiBase implements IMesOrMoveClie
|
|
|
21968
21970
|
}
|
|
21969
21971
|
return Promise.resolve<DownloadDto>(null as any);
|
|
21970
21972
|
}
|
|
21971
|
-
}
|
|
21972
|
-
|
|
21973
|
-
export interface IMesPlannerClient {
|
|
21974
|
-
|
|
21975
|
-
getPlan(resourceGroupId: string | undefined): Promise<PlannerPlanDto>;
|
|
21976
|
-
|
|
21977
|
-
publish(resourceGroupId: string, request: PublishPlanRequest): Promise<PlannerPlanDto>;
|
|
21978
|
-
|
|
21979
|
-
updateSequence(resourceGroupId: string, sequence: PlannerSequenceInput): Promise<PlannerPlanDto>;
|
|
21980
|
-
|
|
21981
|
-
reset(resourceGroupId: string): Promise<PlannerPlanDto>;
|
|
21982
|
-
|
|
21983
|
-
saveDraft(resourceGroupId: string, sequence: PlannerSequenceInput): Promise<PlannerPlanDto>;
|
|
21984
|
-
|
|
21985
|
-
discardDraft(resourceGroupId: string): Promise<PlannerPlanDto>;
|
|
21986
|
-
|
|
21987
|
-
getCapacity(resourceGroupId: string, from: Date | undefined, to: Date | undefined): Promise<WeekCapacityDto[]>;
|
|
21988
|
-
|
|
21989
|
-
getVersions(resourceGroupId: string): Promise<PlannerPlanEventDto[]>;
|
|
21990
|
-
|
|
21991
|
-
getVersion(resourceGroupId: string, eventId: string): Promise<PlannerPlanDto>;
|
|
21992
|
-
|
|
21993
|
-
setProgramStatus(command: SetProgramStatus): Promise<ProgramStatus>;
|
|
21994
|
-
}
|
|
21995
|
-
|
|
21996
|
-
export class MesPlannerClient extends AuthorizedApiBase implements IMesPlannerClient {
|
|
21997
|
-
private http: { fetch(url: RequestInfo, init?: RequestInit): Promise<Response> };
|
|
21998
|
-
private baseUrl: string;
|
|
21999
|
-
|
|
22000
|
-
constructor(configuration: IApiClientConfig, baseUrl?: string, http?: { fetch(url: RequestInfo, init?: RequestInit): Promise<Response> }) {
|
|
22001
|
-
super(configuration);
|
|
22002
|
-
this.http = http ? http : window as any;
|
|
22003
|
-
this.baseUrl = baseUrl ?? "";
|
|
22004
|
-
}
|
|
22005
|
-
|
|
22006
|
-
getPlan(resourceGroupId: string | undefined): Promise<PlannerPlanDto> {
|
|
22007
|
-
let url_ = this.baseUrl + "/mes/planner/plan?";
|
|
22008
|
-
if (resourceGroupId === null)
|
|
22009
|
-
throw new globalThis.Error("The parameter 'resourceGroupId' cannot be null.");
|
|
22010
|
-
else if (resourceGroupId !== undefined)
|
|
22011
|
-
url_ += "resourceGroupId=" + encodeURIComponent("" + resourceGroupId) + "&";
|
|
22012
|
-
url_ = url_.replace(/[?&]$/, "");
|
|
22013
|
-
|
|
22014
|
-
let options_: RequestInit = {
|
|
22015
|
-
method: "GET",
|
|
22016
|
-
headers: {
|
|
22017
|
-
"Accept": "application/json"
|
|
22018
|
-
}
|
|
22019
|
-
};
|
|
22020
|
-
|
|
22021
|
-
return this.transformOptions(options_).then(transformedOptions_ => {
|
|
22022
|
-
return this.http.fetch(url_, transformedOptions_);
|
|
22023
|
-
}).then((_response: Response) => {
|
|
22024
|
-
return this.processGetPlan(_response);
|
|
22025
|
-
});
|
|
22026
|
-
}
|
|
22027
|
-
|
|
22028
|
-
protected processGetPlan(response: Response): Promise<PlannerPlanDto> {
|
|
22029
|
-
const status = response.status;
|
|
22030
|
-
let _headers: any = {}; if (response.headers && response.headers.forEach) { response.headers.forEach((v: any, k: any) => _headers[k] = v); };
|
|
22031
|
-
if (status === 200) {
|
|
22032
|
-
return response.text().then((_responseText) => {
|
|
22033
|
-
let result200: any = null;
|
|
22034
|
-
result200 = _responseText === "" ? null : JSON.parse(_responseText, this.jsonParseReviver) as PlannerPlanDto;
|
|
22035
|
-
return result200;
|
|
22036
|
-
});
|
|
22037
|
-
} else if (status !== 200 && status !== 204) {
|
|
22038
|
-
return response.text().then((_responseText) => {
|
|
22039
|
-
return throwException("An unexpected server error occurred.", status, _responseText, _headers);
|
|
22040
|
-
});
|
|
22041
|
-
}
|
|
22042
|
-
return Promise.resolve<PlannerPlanDto>(null as any);
|
|
22043
|
-
}
|
|
22044
21973
|
|
|
22045
|
-
|
|
22046
|
-
let url_ = this.baseUrl + "/mes/
|
|
22047
|
-
if (resourceGroupId === undefined || resourceGroupId === null)
|
|
22048
|
-
throw new globalThis.Error("The parameter 'resourceGroupId' must be defined.");
|
|
22049
|
-
url_ = url_.replace("{resourceGroupId}", encodeURIComponent("" + resourceGroupId));
|
|
21974
|
+
postListProductionOrders(request: ListProductionOrdersRequest): Promise<ProductionOrderListDto[]> {
|
|
21975
|
+
let url_ = this.baseUrl + "/mes/productionorders/list";
|
|
22050
21976
|
url_ = url_.replace(/[?&]$/, "");
|
|
22051
21977
|
|
|
22052
21978
|
const content_ = JSON.stringify(request);
|
|
@@ -22063,17 +21989,17 @@ export class MesPlannerClient extends AuthorizedApiBase implements IMesPlannerCl
|
|
|
22063
21989
|
return this.transformOptions(options_).then(transformedOptions_ => {
|
|
22064
21990
|
return this.http.fetch(url_, transformedOptions_);
|
|
22065
21991
|
}).then((_response: Response) => {
|
|
22066
|
-
return this.
|
|
21992
|
+
return this.processPostListProductionOrders(_response);
|
|
22067
21993
|
});
|
|
22068
21994
|
}
|
|
22069
21995
|
|
|
22070
|
-
protected
|
|
21996
|
+
protected processPostListProductionOrders(response: Response): Promise<ProductionOrderListDto[]> {
|
|
22071
21997
|
const status = response.status;
|
|
22072
21998
|
let _headers: any = {}; if (response.headers && response.headers.forEach) { response.headers.forEach((v: any, k: any) => _headers[k] = v); };
|
|
22073
21999
|
if (status === 200) {
|
|
22074
22000
|
return response.text().then((_responseText) => {
|
|
22075
22001
|
let result200: any = null;
|
|
22076
|
-
result200 = _responseText === "" ? null : JSON.parse(_responseText, this.jsonParseReviver) as
|
|
22002
|
+
result200 = _responseText === "" ? null : JSON.parse(_responseText, this.jsonParseReviver) as ProductionOrderListDto[];
|
|
22077
22003
|
return result200;
|
|
22078
22004
|
});
|
|
22079
22005
|
} else if (status !== 200 && status !== 204) {
|
|
@@ -22081,331 +22007,7 @@ export class MesPlannerClient extends AuthorizedApiBase implements IMesPlannerCl
|
|
|
22081
22007
|
return throwException("An unexpected server error occurred.", status, _responseText, _headers);
|
|
22082
22008
|
});
|
|
22083
22009
|
}
|
|
22084
|
-
return Promise.resolve<
|
|
22085
|
-
}
|
|
22086
|
-
|
|
22087
|
-
updateSequence(resourceGroupId: string, sequence: PlannerSequenceInput): Promise<PlannerPlanDto> {
|
|
22088
|
-
let url_ = this.baseUrl + "/mes/planner/plan/{resourceGroupId}/sequence";
|
|
22089
|
-
if (resourceGroupId === undefined || resourceGroupId === null)
|
|
22090
|
-
throw new globalThis.Error("The parameter 'resourceGroupId' must be defined.");
|
|
22091
|
-
url_ = url_.replace("{resourceGroupId}", encodeURIComponent("" + resourceGroupId));
|
|
22092
|
-
url_ = url_.replace(/[?&]$/, "");
|
|
22093
|
-
|
|
22094
|
-
const content_ = JSON.stringify(sequence);
|
|
22095
|
-
|
|
22096
|
-
let options_: RequestInit = {
|
|
22097
|
-
body: content_,
|
|
22098
|
-
method: "PUT",
|
|
22099
|
-
headers: {
|
|
22100
|
-
"Content-Type": "application/json",
|
|
22101
|
-
"Accept": "application/json"
|
|
22102
|
-
}
|
|
22103
|
-
};
|
|
22104
|
-
|
|
22105
|
-
return this.transformOptions(options_).then(transformedOptions_ => {
|
|
22106
|
-
return this.http.fetch(url_, transformedOptions_);
|
|
22107
|
-
}).then((_response: Response) => {
|
|
22108
|
-
return this.processUpdateSequence(_response);
|
|
22109
|
-
});
|
|
22110
|
-
}
|
|
22111
|
-
|
|
22112
|
-
protected processUpdateSequence(response: Response): Promise<PlannerPlanDto> {
|
|
22113
|
-
const status = response.status;
|
|
22114
|
-
let _headers: any = {}; if (response.headers && response.headers.forEach) { response.headers.forEach((v: any, k: any) => _headers[k] = v); };
|
|
22115
|
-
if (status === 200) {
|
|
22116
|
-
return response.text().then((_responseText) => {
|
|
22117
|
-
let result200: any = null;
|
|
22118
|
-
result200 = _responseText === "" ? null : JSON.parse(_responseText, this.jsonParseReviver) as PlannerPlanDto;
|
|
22119
|
-
return result200;
|
|
22120
|
-
});
|
|
22121
|
-
} else if (status !== 200 && status !== 204) {
|
|
22122
|
-
return response.text().then((_responseText) => {
|
|
22123
|
-
return throwException("An unexpected server error occurred.", status, _responseText, _headers);
|
|
22124
|
-
});
|
|
22125
|
-
}
|
|
22126
|
-
return Promise.resolve<PlannerPlanDto>(null as any);
|
|
22127
|
-
}
|
|
22128
|
-
|
|
22129
|
-
reset(resourceGroupId: string): Promise<PlannerPlanDto> {
|
|
22130
|
-
let url_ = this.baseUrl + "/mes/planner/plan/{resourceGroupId}/reset";
|
|
22131
|
-
if (resourceGroupId === undefined || resourceGroupId === null)
|
|
22132
|
-
throw new globalThis.Error("The parameter 'resourceGroupId' must be defined.");
|
|
22133
|
-
url_ = url_.replace("{resourceGroupId}", encodeURIComponent("" + resourceGroupId));
|
|
22134
|
-
url_ = url_.replace(/[?&]$/, "");
|
|
22135
|
-
|
|
22136
|
-
let options_: RequestInit = {
|
|
22137
|
-
method: "POST",
|
|
22138
|
-
headers: {
|
|
22139
|
-
"Accept": "application/json"
|
|
22140
|
-
}
|
|
22141
|
-
};
|
|
22142
|
-
|
|
22143
|
-
return this.transformOptions(options_).then(transformedOptions_ => {
|
|
22144
|
-
return this.http.fetch(url_, transformedOptions_);
|
|
22145
|
-
}).then((_response: Response) => {
|
|
22146
|
-
return this.processReset(_response);
|
|
22147
|
-
});
|
|
22148
|
-
}
|
|
22149
|
-
|
|
22150
|
-
protected processReset(response: Response): Promise<PlannerPlanDto> {
|
|
22151
|
-
const status = response.status;
|
|
22152
|
-
let _headers: any = {}; if (response.headers && response.headers.forEach) { response.headers.forEach((v: any, k: any) => _headers[k] = v); };
|
|
22153
|
-
if (status === 200) {
|
|
22154
|
-
return response.text().then((_responseText) => {
|
|
22155
|
-
let result200: any = null;
|
|
22156
|
-
result200 = _responseText === "" ? null : JSON.parse(_responseText, this.jsonParseReviver) as PlannerPlanDto;
|
|
22157
|
-
return result200;
|
|
22158
|
-
});
|
|
22159
|
-
} else if (status !== 200 && status !== 204) {
|
|
22160
|
-
return response.text().then((_responseText) => {
|
|
22161
|
-
return throwException("An unexpected server error occurred.", status, _responseText, _headers);
|
|
22162
|
-
});
|
|
22163
|
-
}
|
|
22164
|
-
return Promise.resolve<PlannerPlanDto>(null as any);
|
|
22165
|
-
}
|
|
22166
|
-
|
|
22167
|
-
saveDraft(resourceGroupId: string, sequence: PlannerSequenceInput): Promise<PlannerPlanDto> {
|
|
22168
|
-
let url_ = this.baseUrl + "/mes/planner/plan/{resourceGroupId}/draft";
|
|
22169
|
-
if (resourceGroupId === undefined || resourceGroupId === null)
|
|
22170
|
-
throw new globalThis.Error("The parameter 'resourceGroupId' must be defined.");
|
|
22171
|
-
url_ = url_.replace("{resourceGroupId}", encodeURIComponent("" + resourceGroupId));
|
|
22172
|
-
url_ = url_.replace(/[?&]$/, "");
|
|
22173
|
-
|
|
22174
|
-
const content_ = JSON.stringify(sequence);
|
|
22175
|
-
|
|
22176
|
-
let options_: RequestInit = {
|
|
22177
|
-
body: content_,
|
|
22178
|
-
method: "POST",
|
|
22179
|
-
headers: {
|
|
22180
|
-
"Content-Type": "application/json",
|
|
22181
|
-
"Accept": "application/json"
|
|
22182
|
-
}
|
|
22183
|
-
};
|
|
22184
|
-
|
|
22185
|
-
return this.transformOptions(options_).then(transformedOptions_ => {
|
|
22186
|
-
return this.http.fetch(url_, transformedOptions_);
|
|
22187
|
-
}).then((_response: Response) => {
|
|
22188
|
-
return this.processSaveDraft(_response);
|
|
22189
|
-
});
|
|
22190
|
-
}
|
|
22191
|
-
|
|
22192
|
-
protected processSaveDraft(response: Response): Promise<PlannerPlanDto> {
|
|
22193
|
-
const status = response.status;
|
|
22194
|
-
let _headers: any = {}; if (response.headers && response.headers.forEach) { response.headers.forEach((v: any, k: any) => _headers[k] = v); };
|
|
22195
|
-
if (status === 200) {
|
|
22196
|
-
return response.text().then((_responseText) => {
|
|
22197
|
-
let result200: any = null;
|
|
22198
|
-
result200 = _responseText === "" ? null : JSON.parse(_responseText, this.jsonParseReviver) as PlannerPlanDto;
|
|
22199
|
-
return result200;
|
|
22200
|
-
});
|
|
22201
|
-
} else if (status !== 200 && status !== 204) {
|
|
22202
|
-
return response.text().then((_responseText) => {
|
|
22203
|
-
return throwException("An unexpected server error occurred.", status, _responseText, _headers);
|
|
22204
|
-
});
|
|
22205
|
-
}
|
|
22206
|
-
return Promise.resolve<PlannerPlanDto>(null as any);
|
|
22207
|
-
}
|
|
22208
|
-
|
|
22209
|
-
discardDraft(resourceGroupId: string): Promise<PlannerPlanDto> {
|
|
22210
|
-
let url_ = this.baseUrl + "/mes/planner/plan/{resourceGroupId}/draft";
|
|
22211
|
-
if (resourceGroupId === undefined || resourceGroupId === null)
|
|
22212
|
-
throw new globalThis.Error("The parameter 'resourceGroupId' must be defined.");
|
|
22213
|
-
url_ = url_.replace("{resourceGroupId}", encodeURIComponent("" + resourceGroupId));
|
|
22214
|
-
url_ = url_.replace(/[?&]$/, "");
|
|
22215
|
-
|
|
22216
|
-
let options_: RequestInit = {
|
|
22217
|
-
method: "DELETE",
|
|
22218
|
-
headers: {
|
|
22219
|
-
"Accept": "application/json"
|
|
22220
|
-
}
|
|
22221
|
-
};
|
|
22222
|
-
|
|
22223
|
-
return this.transformOptions(options_).then(transformedOptions_ => {
|
|
22224
|
-
return this.http.fetch(url_, transformedOptions_);
|
|
22225
|
-
}).then((_response: Response) => {
|
|
22226
|
-
return this.processDiscardDraft(_response);
|
|
22227
|
-
});
|
|
22228
|
-
}
|
|
22229
|
-
|
|
22230
|
-
protected processDiscardDraft(response: Response): Promise<PlannerPlanDto> {
|
|
22231
|
-
const status = response.status;
|
|
22232
|
-
let _headers: any = {}; if (response.headers && response.headers.forEach) { response.headers.forEach((v: any, k: any) => _headers[k] = v); };
|
|
22233
|
-
if (status === 200) {
|
|
22234
|
-
return response.text().then((_responseText) => {
|
|
22235
|
-
let result200: any = null;
|
|
22236
|
-
result200 = _responseText === "" ? null : JSON.parse(_responseText, this.jsonParseReviver) as PlannerPlanDto;
|
|
22237
|
-
return result200;
|
|
22238
|
-
});
|
|
22239
|
-
} else if (status !== 200 && status !== 204) {
|
|
22240
|
-
return response.text().then((_responseText) => {
|
|
22241
|
-
return throwException("An unexpected server error occurred.", status, _responseText, _headers);
|
|
22242
|
-
});
|
|
22243
|
-
}
|
|
22244
|
-
return Promise.resolve<PlannerPlanDto>(null as any);
|
|
22245
|
-
}
|
|
22246
|
-
|
|
22247
|
-
getCapacity(resourceGroupId: string, from: Date | undefined, to: Date | undefined): Promise<WeekCapacityDto[]> {
|
|
22248
|
-
let url_ = this.baseUrl + "/mes/planner/plan/{resourceGroupId}/capacity?";
|
|
22249
|
-
if (resourceGroupId === undefined || resourceGroupId === null)
|
|
22250
|
-
throw new globalThis.Error("The parameter 'resourceGroupId' must be defined.");
|
|
22251
|
-
url_ = url_.replace("{resourceGroupId}", encodeURIComponent("" + resourceGroupId));
|
|
22252
|
-
if (from === null)
|
|
22253
|
-
throw new globalThis.Error("The parameter 'from' cannot be null.");
|
|
22254
|
-
else if (from !== undefined)
|
|
22255
|
-
url_ += "from=" + encodeURIComponent(from ? "" + from.toISOString() : "") + "&";
|
|
22256
|
-
if (to === null)
|
|
22257
|
-
throw new globalThis.Error("The parameter 'to' cannot be null.");
|
|
22258
|
-
else if (to !== undefined)
|
|
22259
|
-
url_ += "to=" + encodeURIComponent(to ? "" + to.toISOString() : "") + "&";
|
|
22260
|
-
url_ = url_.replace(/[?&]$/, "");
|
|
22261
|
-
|
|
22262
|
-
let options_: RequestInit = {
|
|
22263
|
-
method: "GET",
|
|
22264
|
-
headers: {
|
|
22265
|
-
"Accept": "application/json"
|
|
22266
|
-
}
|
|
22267
|
-
};
|
|
22268
|
-
|
|
22269
|
-
return this.transformOptions(options_).then(transformedOptions_ => {
|
|
22270
|
-
return this.http.fetch(url_, transformedOptions_);
|
|
22271
|
-
}).then((_response: Response) => {
|
|
22272
|
-
return this.processGetCapacity(_response);
|
|
22273
|
-
});
|
|
22274
|
-
}
|
|
22275
|
-
|
|
22276
|
-
protected processGetCapacity(response: Response): Promise<WeekCapacityDto[]> {
|
|
22277
|
-
const status = response.status;
|
|
22278
|
-
let _headers: any = {}; if (response.headers && response.headers.forEach) { response.headers.forEach((v: any, k: any) => _headers[k] = v); };
|
|
22279
|
-
if (status === 200) {
|
|
22280
|
-
return response.text().then((_responseText) => {
|
|
22281
|
-
let result200: any = null;
|
|
22282
|
-
result200 = _responseText === "" ? null : JSON.parse(_responseText, this.jsonParseReviver) as WeekCapacityDto[];
|
|
22283
|
-
return result200;
|
|
22284
|
-
});
|
|
22285
|
-
} else if (status !== 200 && status !== 204) {
|
|
22286
|
-
return response.text().then((_responseText) => {
|
|
22287
|
-
return throwException("An unexpected server error occurred.", status, _responseText, _headers);
|
|
22288
|
-
});
|
|
22289
|
-
}
|
|
22290
|
-
return Promise.resolve<WeekCapacityDto[]>(null as any);
|
|
22291
|
-
}
|
|
22292
|
-
|
|
22293
|
-
getVersions(resourceGroupId: string): Promise<PlannerPlanEventDto[]> {
|
|
22294
|
-
let url_ = this.baseUrl + "/mes/planner/plan/{resourceGroupId}/versions";
|
|
22295
|
-
if (resourceGroupId === undefined || resourceGroupId === null)
|
|
22296
|
-
throw new globalThis.Error("The parameter 'resourceGroupId' must be defined.");
|
|
22297
|
-
url_ = url_.replace("{resourceGroupId}", encodeURIComponent("" + resourceGroupId));
|
|
22298
|
-
url_ = url_.replace(/[?&]$/, "");
|
|
22299
|
-
|
|
22300
|
-
let options_: RequestInit = {
|
|
22301
|
-
method: "GET",
|
|
22302
|
-
headers: {
|
|
22303
|
-
"Accept": "application/json"
|
|
22304
|
-
}
|
|
22305
|
-
};
|
|
22306
|
-
|
|
22307
|
-
return this.transformOptions(options_).then(transformedOptions_ => {
|
|
22308
|
-
return this.http.fetch(url_, transformedOptions_);
|
|
22309
|
-
}).then((_response: Response) => {
|
|
22310
|
-
return this.processGetVersions(_response);
|
|
22311
|
-
});
|
|
22312
|
-
}
|
|
22313
|
-
|
|
22314
|
-
protected processGetVersions(response: Response): Promise<PlannerPlanEventDto[]> {
|
|
22315
|
-
const status = response.status;
|
|
22316
|
-
let _headers: any = {}; if (response.headers && response.headers.forEach) { response.headers.forEach((v: any, k: any) => _headers[k] = v); };
|
|
22317
|
-
if (status === 200) {
|
|
22318
|
-
return response.text().then((_responseText) => {
|
|
22319
|
-
let result200: any = null;
|
|
22320
|
-
result200 = _responseText === "" ? null : JSON.parse(_responseText, this.jsonParseReviver) as PlannerPlanEventDto[];
|
|
22321
|
-
return result200;
|
|
22322
|
-
});
|
|
22323
|
-
} else if (status !== 200 && status !== 204) {
|
|
22324
|
-
return response.text().then((_responseText) => {
|
|
22325
|
-
return throwException("An unexpected server error occurred.", status, _responseText, _headers);
|
|
22326
|
-
});
|
|
22327
|
-
}
|
|
22328
|
-
return Promise.resolve<PlannerPlanEventDto[]>(null as any);
|
|
22329
|
-
}
|
|
22330
|
-
|
|
22331
|
-
getVersion(resourceGroupId: string, eventId: string): Promise<PlannerPlanDto> {
|
|
22332
|
-
let url_ = this.baseUrl + "/mes/planner/plan/{resourceGroupId}/versions/{eventId}";
|
|
22333
|
-
if (resourceGroupId === undefined || resourceGroupId === null)
|
|
22334
|
-
throw new globalThis.Error("The parameter 'resourceGroupId' must be defined.");
|
|
22335
|
-
url_ = url_.replace("{resourceGroupId}", encodeURIComponent("" + resourceGroupId));
|
|
22336
|
-
if (eventId === undefined || eventId === null)
|
|
22337
|
-
throw new globalThis.Error("The parameter 'eventId' must be defined.");
|
|
22338
|
-
url_ = url_.replace("{eventId}", encodeURIComponent("" + eventId));
|
|
22339
|
-
url_ = url_.replace(/[?&]$/, "");
|
|
22340
|
-
|
|
22341
|
-
let options_: RequestInit = {
|
|
22342
|
-
method: "GET",
|
|
22343
|
-
headers: {
|
|
22344
|
-
"Accept": "application/json"
|
|
22345
|
-
}
|
|
22346
|
-
};
|
|
22347
|
-
|
|
22348
|
-
return this.transformOptions(options_).then(transformedOptions_ => {
|
|
22349
|
-
return this.http.fetch(url_, transformedOptions_);
|
|
22350
|
-
}).then((_response: Response) => {
|
|
22351
|
-
return this.processGetVersion(_response);
|
|
22352
|
-
});
|
|
22353
|
-
}
|
|
22354
|
-
|
|
22355
|
-
protected processGetVersion(response: Response): Promise<PlannerPlanDto> {
|
|
22356
|
-
const status = response.status;
|
|
22357
|
-
let _headers: any = {}; if (response.headers && response.headers.forEach) { response.headers.forEach((v: any, k: any) => _headers[k] = v); };
|
|
22358
|
-
if (status === 200) {
|
|
22359
|
-
return response.text().then((_responseText) => {
|
|
22360
|
-
let result200: any = null;
|
|
22361
|
-
result200 = _responseText === "" ? null : JSON.parse(_responseText, this.jsonParseReviver) as PlannerPlanDto;
|
|
22362
|
-
return result200;
|
|
22363
|
-
});
|
|
22364
|
-
} else if (status !== 200 && status !== 204) {
|
|
22365
|
-
return response.text().then((_responseText) => {
|
|
22366
|
-
return throwException("An unexpected server error occurred.", status, _responseText, _headers);
|
|
22367
|
-
});
|
|
22368
|
-
}
|
|
22369
|
-
return Promise.resolve<PlannerPlanDto>(null as any);
|
|
22370
|
-
}
|
|
22371
|
-
|
|
22372
|
-
setProgramStatus(command: SetProgramStatus): Promise<ProgramStatus> {
|
|
22373
|
-
let url_ = this.baseUrl + "/mes/planner/operations/program-status";
|
|
22374
|
-
url_ = url_.replace(/[?&]$/, "");
|
|
22375
|
-
|
|
22376
|
-
const content_ = JSON.stringify(command);
|
|
22377
|
-
|
|
22378
|
-
let options_: RequestInit = {
|
|
22379
|
-
body: content_,
|
|
22380
|
-
method: "PUT",
|
|
22381
|
-
headers: {
|
|
22382
|
-
"Content-Type": "application/json",
|
|
22383
|
-
"Accept": "application/json"
|
|
22384
|
-
}
|
|
22385
|
-
};
|
|
22386
|
-
|
|
22387
|
-
return this.transformOptions(options_).then(transformedOptions_ => {
|
|
22388
|
-
return this.http.fetch(url_, transformedOptions_);
|
|
22389
|
-
}).then((_response: Response) => {
|
|
22390
|
-
return this.processSetProgramStatus(_response);
|
|
22391
|
-
});
|
|
22392
|
-
}
|
|
22393
|
-
|
|
22394
|
-
protected processSetProgramStatus(response: Response): Promise<ProgramStatus> {
|
|
22395
|
-
const status = response.status;
|
|
22396
|
-
let _headers: any = {}; if (response.headers && response.headers.forEach) { response.headers.forEach((v: any, k: any) => _headers[k] = v); };
|
|
22397
|
-
if (status === 200) {
|
|
22398
|
-
return response.text().then((_responseText) => {
|
|
22399
|
-
let result200: any = null;
|
|
22400
|
-
result200 = _responseText === "" ? null : JSON.parse(_responseText, this.jsonParseReviver) as ProgramStatus;
|
|
22401
|
-
return result200;
|
|
22402
|
-
});
|
|
22403
|
-
} else if (status !== 200 && status !== 204) {
|
|
22404
|
-
return response.text().then((_responseText) => {
|
|
22405
|
-
return throwException("An unexpected server error occurred.", status, _responseText, _headers);
|
|
22406
|
-
});
|
|
22407
|
-
}
|
|
22408
|
-
return Promise.resolve<ProgramStatus>(null as any);
|
|
22010
|
+
return Promise.resolve<ProductionOrderListDto[]>(null as any);
|
|
22409
22011
|
}
|
|
22410
22012
|
}
|
|
22411
22013
|
|
|
@@ -32954,6 +32556,7 @@ export interface MrbCompanySettingsDto {
|
|
|
32954
32556
|
detailedTransactionsMissingInErp: boolean;
|
|
32955
32557
|
allowMaterialReplacementOnConsumptions: boolean;
|
|
32956
32558
|
nonSplittableTraceUnits: string[];
|
|
32559
|
+
disableTraceEditing: boolean;
|
|
32957
32560
|
}
|
|
32958
32561
|
|
|
32959
32562
|
export interface UpsertMrbCompanySettings {
|
|
@@ -32972,6 +32575,7 @@ export interface UpsertMrbCompanySettings {
|
|
|
32972
32575
|
detailedTransactionsMissingInErp: boolean;
|
|
32973
32576
|
allowMaterialReplacementOnConsumptions: boolean;
|
|
32974
32577
|
nonSplittableTraceUnits: string[];
|
|
32578
|
+
disableTraceEditing: boolean;
|
|
32975
32579
|
}
|
|
32976
32580
|
|
|
32977
32581
|
export interface TraceDto {
|
|
@@ -35637,83 +35241,39 @@ export interface LabelId {
|
|
|
35637
35241
|
trackingId?: string | null;
|
|
35638
35242
|
}
|
|
35639
35243
|
|
|
35640
|
-
export interface
|
|
35641
|
-
resourceGroupId: string;
|
|
35642
|
-
sequence: PlannerOperationDto[];
|
|
35643
|
-
lockedCount: number;
|
|
35644
|
-
planSavedAt?: Date | null;
|
|
35645
|
-
isDraft: boolean;
|
|
35646
|
-
publishedETag?: string | null;
|
|
35647
|
-
weeklyCapacities: WeekCapacityDto[];
|
|
35648
|
-
}
|
|
35649
|
-
|
|
35650
|
-
export interface PlannerOperationDto {
|
|
35244
|
+
export interface ProductionOrderListDto {
|
|
35651
35245
|
id: string;
|
|
35652
|
-
|
|
35653
|
-
|
|
35654
|
-
operationName: string;
|
|
35655
|
-
plannedStart: Date;
|
|
35656
|
-
plannedEnd?: Date | null;
|
|
35657
|
-
status: OperationStatusDto;
|
|
35658
|
-
resourceId: string;
|
|
35659
|
-
resourceName: string;
|
|
35660
|
-
resourceDepartmentNumber?: string | null;
|
|
35661
|
-
resourceDepartmentName?: string | null;
|
|
35662
|
-
partNumber: string;
|
|
35663
|
-
partName?: string | null;
|
|
35664
|
-
partMaterial?: string | null;
|
|
35246
|
+
companyId?: string | null;
|
|
35247
|
+
part?: PartDto | null;
|
|
35665
35248
|
quantity: number;
|
|
35249
|
+
unit?: string | null;
|
|
35250
|
+
status: WorkorderStatus;
|
|
35251
|
+
plannedStart?: Date | null;
|
|
35252
|
+
plannedEnd?: Date | null;
|
|
35666
35253
|
producedQuantity: number;
|
|
35667
|
-
|
|
35668
|
-
|
|
35669
|
-
customerName?: string | null;
|
|
35254
|
+
scrappedQuantity: number;
|
|
35255
|
+
deliveryLocation?: WarehouseLocationDto | null;
|
|
35670
35256
|
project?: WorkOrderProjectDto | null;
|
|
35671
|
-
|
|
35672
|
-
|
|
35673
|
-
|
|
35674
|
-
|
|
35675
|
-
|
|
35676
|
-
|
|
35677
|
-
export type ProgramStatus = "Blank" | "NotOk" | "Ok";
|
|
35678
|
-
|
|
35679
|
-
export interface WeekCapacityDto {
|
|
35680
|
-
weekGroup: string;
|
|
35681
|
-
weekStart: Date;
|
|
35682
|
-
capacityHours: number;
|
|
35683
|
-
}
|
|
35684
|
-
|
|
35685
|
-
export interface PublishPlanRequest {
|
|
35686
|
-
/** ETag of the published plan the caller last read, used for optimistic
|
|
35687
|
-
concurrency. Null if the caller never observed a published plan. */
|
|
35688
|
-
publishedETag?: string | null;
|
|
35689
|
-
comment?: string | null;
|
|
35690
|
-
/** The caller's unsaved working sequence to publish. When null, the
|
|
35691
|
-
persisted active plan (draft, else published) is published instead. */
|
|
35692
|
-
sequence?: PlannerSequenceInput | null;
|
|
35693
|
-
}
|
|
35694
|
-
|
|
35695
|
-
export interface PlannerSequenceInput {
|
|
35696
|
-
orderedOperationKeys: string[];
|
|
35697
|
-
lockedCount: number;
|
|
35698
|
-
weekGroups?: { [key: string]: string; } | null;
|
|
35257
|
+
startDate?: Date | null;
|
|
35258
|
+
endDate?: Date | null;
|
|
35259
|
+
deliveryDate?: Date | null;
|
|
35260
|
+
bomPosition?: string | null;
|
|
35261
|
+
orderReference?: OrderReferenceDto | null;
|
|
35262
|
+
customerOrderReference?: WorkorderCustomerOrderReferenceDto | null;
|
|
35699
35263
|
}
|
|
35700
35264
|
|
|
35701
|
-
export interface
|
|
35702
|
-
|
|
35703
|
-
|
|
35704
|
-
|
|
35705
|
-
by?: string | null;
|
|
35706
|
-
comment?: string | null;
|
|
35707
|
-
operationCount: number;
|
|
35708
|
-
lockedCount: number;
|
|
35265
|
+
export interface OrderReferenceDto {
|
|
35266
|
+
orderReferenceType?: OrderReferenceTypeDto;
|
|
35267
|
+
orderNumber?: string;
|
|
35268
|
+
orderLineNumber?: number | null;
|
|
35709
35269
|
}
|
|
35710
35270
|
|
|
35711
|
-
export type
|
|
35271
|
+
export type OrderReferenceTypeDto = "ProductionOrder" | "PurchaseOrder" | "SalesOrder";
|
|
35712
35272
|
|
|
35713
|
-
export interface
|
|
35714
|
-
|
|
35715
|
-
|
|
35716
|
-
|
|
35273
|
+
export interface ListProductionOrdersRequest {
|
|
35274
|
+
search: string;
|
|
35275
|
+
searchType: SearchTypeDto;
|
|
35276
|
+
maxResults?: number | null;
|
|
35717
35277
|
}
|
|
35718
35278
|
|
|
35719
35279
|
export type ProductionOrderAttachmentType = "Url" | "Note" | "Image" | "File";
|
|
@@ -35803,14 +35363,6 @@ export interface DrawingFileDto {
|
|
|
35803
35363
|
comment?: string;
|
|
35804
35364
|
}
|
|
35805
35365
|
|
|
35806
|
-
export interface OrderReferenceDto {
|
|
35807
|
-
orderReferenceType?: OrderReferenceTypeDto;
|
|
35808
|
-
orderNumber?: string;
|
|
35809
|
-
orderLineNumber?: number | null;
|
|
35810
|
-
}
|
|
35811
|
-
|
|
35812
|
-
export type OrderReferenceTypeDto = "ProductionOrder" | "PurchaseOrder" | "SalesOrder";
|
|
35813
|
-
|
|
35814
35366
|
export interface ProductionOrderBomDto {
|
|
35815
35367
|
position: string;
|
|
35816
35368
|
lineNumber: number;
|
|
@@ -36014,7 +35566,6 @@ export interface ProductionScheduleOperationDto {
|
|
|
36014
35566
|
materialPickStatus: MaterialPickStatus;
|
|
36015
35567
|
productionStatus: OperationStatusDto;
|
|
36016
35568
|
setupStatus?: OperationStatusDto | null;
|
|
36017
|
-
programStatus?: ProgramStatus | null;
|
|
36018
35569
|
}
|
|
36019
35570
|
|
|
36020
35571
|
export interface SurroundingOperationDto {
|
|
@@ -36389,7 +35940,6 @@ export interface ImaCertificateTypeRequirementsDto {
|
|
|
36389
35940
|
productAndOrderInformation: ImaCertificateTypeProductAndOrderInformationRequirementsDto;
|
|
36390
35941
|
testMethodsAndReferences: ImaCertificateTypeTestMethodsAndReferencesRequirementsDto;
|
|
36391
35942
|
testResults: ImaCertificateTypeTestResultsRequirementsDto;
|
|
36392
|
-
documentTypes: ImaCertificateTypeDocumentTypesRequirementsDto;
|
|
36393
35943
|
}
|
|
36394
35944
|
|
|
36395
35945
|
export interface ImaCdfEntityReadBase {
|
|
@@ -36399,6 +35949,7 @@ export interface ImaCertificateTypeManufacturerRequirementsDto extends ImaCdfEnt
|
|
|
36399
35949
|
manufacturer?: boolean;
|
|
36400
35950
|
address?: boolean;
|
|
36401
35951
|
contact?: boolean;
|
|
35952
|
+
steelPlant?: boolean;
|
|
36402
35953
|
}
|
|
36403
35954
|
|
|
36404
35955
|
export interface ImaCertificateTypeSignatureRequirementsDto extends ImaCdfEntityReadBase {
|
|
@@ -36420,6 +35971,7 @@ export interface ImaCertificateTypeThirdPartyRequirementsDto extends ImaCdfEntit
|
|
|
36420
35971
|
}
|
|
36421
35972
|
|
|
36422
35973
|
export interface ImaCertificateTypeCertificationRequirementsDto extends ImaCdfEntityReadBase {
|
|
35974
|
+
certificateType?: boolean;
|
|
36423
35975
|
certificateOfCompliance?: boolean;
|
|
36424
35976
|
inspectionCertificate?: boolean;
|
|
36425
35977
|
}
|
|
@@ -36432,7 +35984,8 @@ export interface ImaCertificateTypeProductAndOrderInformationRequirementsDto ext
|
|
|
36432
35984
|
dimensionsOrWeight?: boolean;
|
|
36433
35985
|
batchNumber?: boolean;
|
|
36434
35986
|
heatNumber?: boolean;
|
|
36435
|
-
|
|
35987
|
+
relevantStandard?: boolean;
|
|
35988
|
+
steelMaking?: boolean;
|
|
36436
35989
|
}
|
|
36437
35990
|
|
|
36438
35991
|
export interface ImaCertificateTypeTestMethodsAndReferencesRequirementsDto extends ImaCdfEntityReadBase {
|
|
@@ -36440,28 +35993,14 @@ export interface ImaCertificateTypeTestMethodsAndReferencesRequirementsDto exten
|
|
|
36440
35993
|
}
|
|
36441
35994
|
|
|
36442
35995
|
export interface ImaCertificateTypeTestResultsRequirementsDto extends ImaCdfEntityReadBase {
|
|
36443
|
-
|
|
36444
|
-
|
|
35996
|
+
tensileTests?: boolean;
|
|
35997
|
+
hardnessTests?: boolean;
|
|
36445
35998
|
impactTests?: boolean;
|
|
35999
|
+
chemicalAnalysis?: boolean;
|
|
36446
36000
|
corrosionTests?: boolean;
|
|
36447
36001
|
ferriteContentAndMicrostructure?: boolean;
|
|
36448
36002
|
}
|
|
36449
36003
|
|
|
36450
|
-
export interface ImaCertificateTypeDocumentTypesRequirementsDto extends ImaCdfEntityReadBase {
|
|
36451
|
-
heatTreatmentCertificate?: boolean;
|
|
36452
|
-
ultrasonicControlCertificate?: boolean;
|
|
36453
|
-
liquidPenetrantCertificate?: boolean;
|
|
36454
|
-
testReport?: boolean;
|
|
36455
|
-
dimensionalReport?: boolean;
|
|
36456
|
-
dyePenetrantReport?: boolean;
|
|
36457
|
-
visualReport?: boolean;
|
|
36458
|
-
certificateOfAnalyticalAndMechanicalTests?: boolean;
|
|
36459
|
-
certificateOfTest?: boolean;
|
|
36460
|
-
technicalReport?: boolean;
|
|
36461
|
-
microExaminationReport?: boolean;
|
|
36462
|
-
radiologicalReport?: boolean;
|
|
36463
|
-
}
|
|
36464
|
-
|
|
36465
36004
|
export interface ImaCreateOrCopyCertificateTypeRequestDto {
|
|
36466
36005
|
name: string;
|
|
36467
36006
|
revision: string;
|
|
@@ -36484,13 +36023,13 @@ export interface ImaCertificateTypeRequirementsUpdateDto {
|
|
|
36484
36023
|
productAndOrderInformation?: ImaCertificateTypeProductAndOrderInformationRequirementsUpdateDto | null;
|
|
36485
36024
|
testMethodsAndReferences?: ImaCertificateTypeTestMethodsAndReferencesRequirementsUpdateDto | null;
|
|
36486
36025
|
testResults?: ImaCertificateTypeTestResultsRequirementsUpdateDto | null;
|
|
36487
|
-
documentTypes?: ImaCertificateTypeDocumentTypesRequirementsUpdateDto | null;
|
|
36488
36026
|
}
|
|
36489
36027
|
|
|
36490
36028
|
export interface ImaCertificateTypeManufacturerRequirementsUpdateDto {
|
|
36491
36029
|
manufacturer?: boolean | null;
|
|
36492
36030
|
address?: boolean | null;
|
|
36493
36031
|
contact?: boolean | null;
|
|
36032
|
+
steelPlant?: boolean | null;
|
|
36494
36033
|
}
|
|
36495
36034
|
|
|
36496
36035
|
export interface ImaCertificateTypeSignatureRequirementsUpdateDto {
|
|
@@ -36512,6 +36051,7 @@ export interface ImaCertificateTypeThirdPartyRequirementsUpdateDto {
|
|
|
36512
36051
|
}
|
|
36513
36052
|
|
|
36514
36053
|
export interface ImaCertificateTypeCertificationRequirementsUpdateDto {
|
|
36054
|
+
certificateType?: boolean | null;
|
|
36515
36055
|
certificateOfCompliance?: boolean | null;
|
|
36516
36056
|
inspectionCertificate?: boolean | null;
|
|
36517
36057
|
}
|
|
@@ -36524,7 +36064,8 @@ export interface ImaCertificateTypeProductAndOrderInformationRequirementsUpdateD
|
|
|
36524
36064
|
dimensionsOrWeight?: boolean | null;
|
|
36525
36065
|
batchNumber?: boolean | null;
|
|
36526
36066
|
heatNumber?: boolean | null;
|
|
36527
|
-
|
|
36067
|
+
relevantStandard?: boolean | null;
|
|
36068
|
+
steelMaking?: boolean | null;
|
|
36528
36069
|
}
|
|
36529
36070
|
|
|
36530
36071
|
export interface ImaCertificateTypeTestMethodsAndReferencesRequirementsUpdateDto {
|
|
@@ -36532,28 +36073,14 @@ export interface ImaCertificateTypeTestMethodsAndReferencesRequirementsUpdateDto
|
|
|
36532
36073
|
}
|
|
36533
36074
|
|
|
36534
36075
|
export interface ImaCertificateTypeTestResultsRequirementsUpdateDto {
|
|
36535
|
-
|
|
36536
|
-
|
|
36076
|
+
tensileTests?: boolean | null;
|
|
36077
|
+
hardnessTests?: boolean | null;
|
|
36537
36078
|
impactTests?: boolean | null;
|
|
36079
|
+
chemicalAnalysis?: boolean | null;
|
|
36538
36080
|
corrosionTests?: boolean | null;
|
|
36539
36081
|
ferriteContentAndMicrostructure?: boolean | null;
|
|
36540
36082
|
}
|
|
36541
36083
|
|
|
36542
|
-
export interface ImaCertificateTypeDocumentTypesRequirementsUpdateDto {
|
|
36543
|
-
heatTreatmentCertificate?: boolean | null;
|
|
36544
|
-
ultrasonicControlCertificate?: boolean | null;
|
|
36545
|
-
liquidPenetrantCertificate?: boolean | null;
|
|
36546
|
-
testReport?: boolean | null;
|
|
36547
|
-
dimensionalReport?: boolean | null;
|
|
36548
|
-
dyePenetrantReport?: boolean | null;
|
|
36549
|
-
visualReport?: boolean | null;
|
|
36550
|
-
certificateOfAnalyticalAndMechanicalTests?: boolean | null;
|
|
36551
|
-
certificateOfTest?: boolean | null;
|
|
36552
|
-
technicalReport?: boolean | null;
|
|
36553
|
-
microExaminationReport?: boolean | null;
|
|
36554
|
-
radiologicalReport?: boolean | null;
|
|
36555
|
-
}
|
|
36556
|
-
|
|
36557
36084
|
export interface ImaCertificateTypeLiteDto {
|
|
36558
36085
|
certificateTypeId: string;
|
|
36559
36086
|
version: number;
|
|
@@ -36628,14 +36155,13 @@ export interface ImaCertificateTypeResultsDto extends ImaCdfEntityReadBase {
|
|
|
36628
36155
|
certification: ImaCertificateTypeCertificationResultsDto;
|
|
36629
36156
|
productAndOrderInformation: ImaCertificateTypeProductAndOrderInformationResultsDto;
|
|
36630
36157
|
testMethodsAndReferences: ImaCertificateTypeTestMethodsAndReferencesResultsDto;
|
|
36631
|
-
testResults: ImaCertificateTypeTestResultsResultsDto;
|
|
36632
|
-
documentTypes: ImaCertificateTypeDocumentTypesResultsDto;
|
|
36633
36158
|
}
|
|
36634
36159
|
|
|
36635
36160
|
export interface ImaCertificateTypeManufacturerResultsDto extends ImaCdfEntityReadBase {
|
|
36636
36161
|
manufacturer?: ImaCertificateTypeResultLine | null;
|
|
36637
36162
|
address?: ImaCertificateTypeResultLine | null;
|
|
36638
36163
|
contact?: ImaCertificateTypeResultLine | null;
|
|
36164
|
+
steelPlant?: ImaCertificateTypeResultLine | null;
|
|
36639
36165
|
}
|
|
36640
36166
|
|
|
36641
36167
|
export interface ImaCertificateTypeResultLine extends ImaCdfEntityReadBase {
|
|
@@ -36672,10 +36198,20 @@ export interface ImaCertificateTypeThirdPartyResultsDto extends ImaCdfEntityRead
|
|
|
36672
36198
|
}
|
|
36673
36199
|
|
|
36674
36200
|
export interface ImaCertificateTypeCertificationResultsDto extends ImaCdfEntityReadBase {
|
|
36675
|
-
|
|
36201
|
+
certificateType?: ImaCertificateTypeResultLine | null;
|
|
36202
|
+
certificateOfCompliance?: ImaSupplementaryCheckResultDto | null;
|
|
36676
36203
|
inspectionCertificate?: ImaCertificateTypeResultLine | null;
|
|
36677
36204
|
}
|
|
36678
36205
|
|
|
36206
|
+
export interface ImaSupplementaryCheckResultDto extends ImaCdfEntityReadBase {
|
|
36207
|
+
status?: string | null;
|
|
36208
|
+
documentId?: string | null;
|
|
36209
|
+
acceptable?: boolean | null;
|
|
36210
|
+
standards: string[];
|
|
36211
|
+
summary?: string | null;
|
|
36212
|
+
override?: ImaResultLineOverrideDto | null;
|
|
36213
|
+
}
|
|
36214
|
+
|
|
36679
36215
|
export interface ImaCertificateTypeProductAndOrderInformationResultsDto extends ImaCdfEntityReadBase {
|
|
36680
36216
|
productDescription?: ImaCertificateTypeResultLine | null;
|
|
36681
36217
|
materialGrade?: ImaCertificateTypeResultLine | null;
|
|
@@ -36684,41 +36220,32 @@ export interface ImaCertificateTypeProductAndOrderInformationResultsDto extends
|
|
|
36684
36220
|
dimensionsOrWeight?: ImaCertificateTypeResultLine | null;
|
|
36685
36221
|
batchNumber?: ImaCertificateTypeResultLine | null;
|
|
36686
36222
|
heatNumber?: ImaCertificateTypeResultLine | null;
|
|
36687
|
-
|
|
36223
|
+
relevantStandard?: ImaCertificateTypeResultLine | null;
|
|
36224
|
+
steelMaking: ImaSteelMakingResultDto;
|
|
36688
36225
|
}
|
|
36689
36226
|
|
|
36690
|
-
export interface
|
|
36691
|
-
|
|
36692
|
-
|
|
36693
|
-
|
|
36694
|
-
export interface ImaCertificateTypeTestResultsResultsDto extends ImaCdfEntityReadBase {
|
|
36695
|
-
mechanicalProperties?: ImaCertificateTypeResultLine | null;
|
|
36696
|
-
chemicalAnalysis?: ImaCertificateTypeResultLine | null;
|
|
36697
|
-
impactTests?: ImaCertificateTypeResultLine | null;
|
|
36698
|
-
corrosionTests?: ImaCertificateTypeResultLine | null;
|
|
36699
|
-
ferriteContentAndMicrostructure?: ImaCertificateTypeResultLine | null;
|
|
36227
|
+
export interface ImaSteelMakingResultDto extends ImaCdfEntityReadBase {
|
|
36228
|
+
raw?: string[] | null;
|
|
36229
|
+
chain?: string[] | null;
|
|
36230
|
+
unmatched?: string[] | null;
|
|
36700
36231
|
}
|
|
36701
36232
|
|
|
36702
|
-
export interface
|
|
36703
|
-
|
|
36704
|
-
ultrasonicControlCertificate?: ImaCertificateTypeResultLine | null;
|
|
36705
|
-
liquidPenetrantCertificate?: ImaCertificateTypeResultLine | null;
|
|
36706
|
-
testReport?: ImaCertificateTypeResultLine | null;
|
|
36707
|
-
dimensionalReport?: ImaCertificateTypeResultLine | null;
|
|
36708
|
-
dyePenetrantReport?: ImaCertificateTypeResultLine | null;
|
|
36709
|
-
visualReport?: ImaCertificateTypeResultLine | null;
|
|
36710
|
-
certificateOfAnalyticalAndMechanicalTests?: ImaCertificateTypeResultLine | null;
|
|
36711
|
-
certificateOfTest?: ImaCertificateTypeResultLine | null;
|
|
36712
|
-
technicalReport?: ImaCertificateTypeResultLine | null;
|
|
36713
|
-
microExaminationReport?: ImaCertificateTypeResultLine | null;
|
|
36714
|
-
radiologicalReport?: ImaCertificateTypeResultLine | null;
|
|
36233
|
+
export interface ImaCertificateTypeTestMethodsAndReferencesResultsDto extends ImaCdfEntityReadBase {
|
|
36234
|
+
usedStandards?: ImaCertificateTypeResultLine | null;
|
|
36715
36235
|
}
|
|
36716
36236
|
|
|
36717
36237
|
export interface ImaSpecificationResultsDto extends ImaCdfEntityReadBase {
|
|
36718
36238
|
chemistry: ImaSpecificationChemistryResultsDto;
|
|
36719
36239
|
mechanical: ImaSpecificationMechanicalResultsDto;
|
|
36720
36240
|
ferrite: ImaSpecificationFerriteResultsDto;
|
|
36721
|
-
|
|
36241
|
+
chemicalAnalysis: ImaChemicalAnalysisResultDto[];
|
|
36242
|
+
tensileTests: ImaTensileTestResultDto[];
|
|
36243
|
+
hardnessTests: ImaHardnessTestResultDto[];
|
|
36244
|
+
impactTests: ImaImpactTestResultDto[];
|
|
36245
|
+
corrosionTests: ImaCorrosionTestResultDto[];
|
|
36246
|
+
ferriteContentAndMicrostructure: ImaFerriteResultDto[];
|
|
36247
|
+
heatTreatments: ImaHeatTreatmentResultDto[];
|
|
36248
|
+
documentTypes: ImaDocumentTypesResultsDto;
|
|
36722
36249
|
}
|
|
36723
36250
|
|
|
36724
36251
|
export interface ImaSpecificationChemistryResultsDto extends ImaCdfEntityReadBase {
|
|
@@ -36768,30 +36295,146 @@ export interface ImaSpecificationFerriteResultLineDto extends ImaCdfEntityReadBa
|
|
|
36768
36295
|
measurementMethod?: string | null;
|
|
36769
36296
|
}
|
|
36770
36297
|
|
|
36771
|
-
export interface
|
|
36772
|
-
|
|
36773
|
-
|
|
36774
|
-
|
|
36298
|
+
export interface ImaChemicalAnalysisResultDto extends ImaCdfEntityReadBase {
|
|
36299
|
+
sampleReference?: string | null;
|
|
36300
|
+
analysisType?: string | null;
|
|
36301
|
+
elements: ImaChemicalElementResultDto[];
|
|
36302
|
+
indices: ImaChemicalIndexResultDto[];
|
|
36303
|
+
testStandards: string[];
|
|
36304
|
+
override?: ImaResultLineOverrideDto | null;
|
|
36305
|
+
}
|
|
36306
|
+
|
|
36307
|
+
export interface ImaChemicalElementResultDto extends ImaCdfEntityReadBase {
|
|
36308
|
+
symbol?: string | null;
|
|
36309
|
+
value?: ImaResultValueDto | null;
|
|
36310
|
+
}
|
|
36311
|
+
|
|
36312
|
+
export interface ImaResultValueDto extends ImaCdfEntityReadBase {
|
|
36313
|
+
readValue?: string | null;
|
|
36314
|
+
value?: number | null;
|
|
36315
|
+
unit?: string | null;
|
|
36316
|
+
override?: ImaResultLineOverrideDto | null;
|
|
36317
|
+
}
|
|
36318
|
+
|
|
36319
|
+
export interface ImaChemicalIndexResultDto extends ImaCdfEntityReadBase {
|
|
36320
|
+
name?: string | null;
|
|
36321
|
+
value?: number | null;
|
|
36322
|
+
}
|
|
36323
|
+
|
|
36324
|
+
export interface ImaTensileTestResultDto extends ImaCdfEntityReadBase {
|
|
36325
|
+
sampleReference?: string | null;
|
|
36326
|
+
orientation?: string | null;
|
|
36327
|
+
testLocation?: string | null;
|
|
36328
|
+
temperature?: ImaResultValueDto | null;
|
|
36329
|
+
roomTemperature?: boolean | null;
|
|
36330
|
+
yieldStrengths: ImaYieldStrengthResultDto[];
|
|
36331
|
+
tensileStrength?: ImaResultValueDto | null;
|
|
36332
|
+
yieldTensileRatio?: number | null;
|
|
36333
|
+
elongations: ImaElongationResultDto[];
|
|
36334
|
+
reductionOfArea?: ImaResultValueDto | null;
|
|
36335
|
+
testStandards: string[];
|
|
36336
|
+
override?: ImaResultLineOverrideDto | null;
|
|
36337
|
+
}
|
|
36338
|
+
|
|
36339
|
+
export interface ImaYieldStrengthResultDto extends ImaCdfEntityReadBase {
|
|
36340
|
+
label?: string | null;
|
|
36341
|
+
value?: ImaResultValueDto | null;
|
|
36342
|
+
}
|
|
36343
|
+
|
|
36344
|
+
export interface ImaElongationResultDto extends ImaCdfEntityReadBase {
|
|
36345
|
+
gauge?: string | null;
|
|
36346
|
+
value?: ImaResultValueDto | null;
|
|
36347
|
+
}
|
|
36348
|
+
|
|
36349
|
+
export interface ImaHardnessTestResultDto extends ImaCdfEntityReadBase {
|
|
36350
|
+
sampleReference?: string | null;
|
|
36351
|
+
orientation?: string | null;
|
|
36352
|
+
testLocation?: string | null;
|
|
36353
|
+
readings: ImaHardnessReadingResultDto[];
|
|
36354
|
+
testStandards: string[];
|
|
36355
|
+
override?: ImaResultLineOverrideDto | null;
|
|
36356
|
+
}
|
|
36357
|
+
|
|
36358
|
+
export interface ImaHardnessReadingResultDto extends ImaCdfEntityReadBase {
|
|
36359
|
+
label?: string | null;
|
|
36360
|
+
scale?: string | null;
|
|
36361
|
+
value?: number | null;
|
|
36775
36362
|
}
|
|
36776
36363
|
|
|
36777
|
-
export interface
|
|
36778
|
-
|
|
36779
|
-
|
|
36780
|
-
|
|
36364
|
+
export interface ImaImpactTestResultDto extends ImaCdfEntityReadBase {
|
|
36365
|
+
sampleReference?: string | null;
|
|
36366
|
+
orientation?: string | null;
|
|
36367
|
+
testLocation?: string | null;
|
|
36368
|
+
temperature?: ImaResultValueDto | null;
|
|
36369
|
+
roomTemperature?: boolean | null;
|
|
36370
|
+
testLabel?: string | null;
|
|
36371
|
+
notchType?: string | null;
|
|
36372
|
+
specimenSize?: string | null;
|
|
36373
|
+
individualValues: ImaResultValueDto[];
|
|
36374
|
+
reportedAverage?: ImaResultValueDto | null;
|
|
36375
|
+
reportedMinimum?: ImaResultValueDto | null;
|
|
36376
|
+
testStandards: string[];
|
|
36377
|
+
override?: ImaResultLineOverrideDto | null;
|
|
36781
36378
|
}
|
|
36782
36379
|
|
|
36783
|
-
export interface
|
|
36784
|
-
|
|
36785
|
-
|
|
36786
|
-
|
|
36380
|
+
export interface ImaCorrosionTestResultDto extends ImaCdfEntityReadBase {
|
|
36381
|
+
sampleReference?: string | null;
|
|
36382
|
+
testLocation?: string | null;
|
|
36383
|
+
testMethod?: string | null;
|
|
36384
|
+
testTemperature?: ImaResultValueDto | null;
|
|
36385
|
+
roomTemperature?: boolean | null;
|
|
36386
|
+
weightLoss?: ImaResultValueDto | null;
|
|
36387
|
+
pitting?: boolean | null;
|
|
36388
|
+
result?: string | null;
|
|
36389
|
+
acceptable?: boolean | null;
|
|
36390
|
+
override?: ImaResultLineOverrideDto | null;
|
|
36391
|
+
}
|
|
36392
|
+
|
|
36393
|
+
export interface ImaFerriteResultDto extends ImaCdfEntityReadBase {
|
|
36394
|
+
sampleReference?: string | null;
|
|
36395
|
+
testLocation?: string | null;
|
|
36396
|
+
ferrite?: ImaResultValueDto | null;
|
|
36397
|
+
ferriteTolerance?: number | null;
|
|
36398
|
+
reportedRange?: string | null;
|
|
36399
|
+
intermetallicPhases?: boolean | null;
|
|
36400
|
+
grainSize?: string | null;
|
|
36401
|
+
testStandards: string[];
|
|
36402
|
+
override?: ImaResultLineOverrideDto | null;
|
|
36403
|
+
}
|
|
36404
|
+
|
|
36405
|
+
export interface ImaHeatTreatmentResultDto extends ImaCdfEntityReadBase {
|
|
36406
|
+
stepType?: string | null;
|
|
36407
|
+
treatmentName?: string | null;
|
|
36408
|
+
temperature?: ImaResultValueDto | null;
|
|
36409
|
+
temperatureMin?: number | null;
|
|
36410
|
+
temperatureMax?: number | null;
|
|
36411
|
+
soakTime?: ImaResultValueDto | null;
|
|
36412
|
+
soakRate?: string | null;
|
|
36413
|
+
coolingMedium?: string | null;
|
|
36414
|
+
override?: ImaResultLineOverrideDto | null;
|
|
36415
|
+
}
|
|
36416
|
+
|
|
36417
|
+
export interface ImaDocumentTypesResultsDto extends ImaCdfEntityReadBase {
|
|
36418
|
+
ultrasonicControlCertificate?: ImaSupplementaryCheckResultDto | null;
|
|
36419
|
+
radiologicalReport?: ImaSupplementaryCheckResultDto | null;
|
|
36420
|
+
liquidPenetrantCertificate?: ImaSupplementaryCheckResultDto | null;
|
|
36421
|
+
magneticParticle?: ImaSupplementaryCheckResultDto | null;
|
|
36422
|
+
pmi?: ImaSupplementaryCheckResultDto | null;
|
|
36423
|
+
hydrostatic?: ImaSupplementaryCheckResultDto | null;
|
|
36424
|
+
visualReport?: ImaSupplementaryCheckResultDto | null;
|
|
36425
|
+
dimensionalReport?: ImaSupplementaryCheckResultDto | null;
|
|
36426
|
+
microExaminationReport?: ImaSupplementaryCheckResultDto | null;
|
|
36787
36427
|
}
|
|
36788
36428
|
|
|
36789
36429
|
export interface ImaOverrideMaterialCheckRequestDto {
|
|
36790
36430
|
certificateTypeSection?: ImaOverrideCertificateTypeResultsDto | null;
|
|
36791
|
-
|
|
36792
|
-
|
|
36793
|
-
|
|
36794
|
-
|
|
36431
|
+
chemicalAnalysisSection?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
36432
|
+
tensileTestSection?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
36433
|
+
hardnessTestSection?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
36434
|
+
impactTestSection?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
36435
|
+
corrosionTestSection?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
36436
|
+
ferriteResultSection?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
36437
|
+
documentTypesSection?: ImaOverrideDocumentTypesResultsDto | null;
|
|
36795
36438
|
}
|
|
36796
36439
|
|
|
36797
36440
|
export interface ImaOverrideCertificateTypeResultsDto {
|
|
@@ -36801,14 +36444,13 @@ export interface ImaOverrideCertificateTypeResultsDto {
|
|
|
36801
36444
|
certification?: ImaOverrideCertificateTypeCertificationResultsDto | null;
|
|
36802
36445
|
productAndOrderInformation?: ImaOverrideCertificateTypeProductAndOrderInformationResultsDto | null;
|
|
36803
36446
|
testMethodsAndReferences?: ImaOverrideCertificateTypeTestMethodsAndReferencesResultsDto | null;
|
|
36804
|
-
testResults?: ImaOverrideCertificateTypeTestResultsResultsDto | null;
|
|
36805
|
-
documentTypes?: ImaOverrideCertificateTypeDocumentTypesResultsDto | null;
|
|
36806
36447
|
}
|
|
36807
36448
|
|
|
36808
36449
|
export interface ImaOverrideCertificateTypeManufacturerResultsDto {
|
|
36809
36450
|
manufacturer?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
36810
36451
|
address?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
36811
36452
|
contact?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
36453
|
+
steelPlant?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
36812
36454
|
}
|
|
36813
36455
|
|
|
36814
36456
|
export interface ImaOverrideUpdateMaterialCheckResultLineDto {
|
|
@@ -36835,6 +36477,7 @@ export interface ImaOverrideCertificateTypeThirdPartyResultsDto {
|
|
|
36835
36477
|
}
|
|
36836
36478
|
|
|
36837
36479
|
export interface ImaOverrideCertificateTypeCertificationResultsDto {
|
|
36480
|
+
certificateType?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
36838
36481
|
certificateOfCompliance?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
36839
36482
|
inspectionCertificate?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
36840
36483
|
}
|
|
@@ -36847,66 +36490,23 @@ export interface ImaOverrideCertificateTypeProductAndOrderInformationResultsDto
|
|
|
36847
36490
|
dimensionsOrWeight?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
36848
36491
|
batchNumber?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
36849
36492
|
heatNumber?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
36850
|
-
|
|
36493
|
+
relevantStandard?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
36851
36494
|
}
|
|
36852
36495
|
|
|
36853
36496
|
export interface ImaOverrideCertificateTypeTestMethodsAndReferencesResultsDto {
|
|
36854
36497
|
usedStandards?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
36855
36498
|
}
|
|
36856
36499
|
|
|
36857
|
-
export interface
|
|
36858
|
-
mechanicalProperties?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
36859
|
-
chemicalAnalysis?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
36860
|
-
impactTests?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
36861
|
-
corrosionTests?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
36862
|
-
ferriteContentAndMicrostructure?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
36863
|
-
}
|
|
36864
|
-
|
|
36865
|
-
export interface ImaOverrideCertificateTypeDocumentTypesResultsDto {
|
|
36866
|
-
heatTreatmentCertificate?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
36500
|
+
export interface ImaOverrideDocumentTypesResultsDto {
|
|
36867
36501
|
ultrasonicControlCertificate?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
36502
|
+
radiologicalReport?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
36868
36503
|
liquidPenetrantCertificate?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
36869
|
-
|
|
36870
|
-
|
|
36871
|
-
|
|
36504
|
+
magneticParticle?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
36505
|
+
pmi?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
36506
|
+
hydrostatic?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
36872
36507
|
visualReport?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
36873
|
-
|
|
36874
|
-
certificateOfTest?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
36875
|
-
technicalReport?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
36508
|
+
dimensionalReport?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
36876
36509
|
microExaminationReport?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
36877
|
-
radiologicalReport?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
36878
|
-
}
|
|
36879
|
-
|
|
36880
|
-
export interface ImaOverrideSpecificationChemistryResultsDto {
|
|
36881
|
-
carbon?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
36882
|
-
manganese?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
36883
|
-
silicon?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
36884
|
-
phosphorus?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
36885
|
-
sulfur?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
36886
|
-
chromium?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
36887
|
-
nickel?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
36888
|
-
molybdenum?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
36889
|
-
copper?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
36890
|
-
nitrogen?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
36891
|
-
wolfram?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
36892
|
-
iron?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
36893
|
-
}
|
|
36894
|
-
|
|
36895
|
-
export interface ImaOverrideSpecificationMechanicalResultsDto {
|
|
36896
|
-
yieldStrength?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
36897
|
-
tensileStrength?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
36898
|
-
elongation?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
36899
|
-
reductionOfArea?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
36900
|
-
impactEnergy?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
36901
|
-
hardness?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
36902
|
-
}
|
|
36903
|
-
|
|
36904
|
-
export interface ImaOverrideSpecificationFerriteResultsDto {
|
|
36905
|
-
ferriteContent?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
36906
|
-
}
|
|
36907
|
-
|
|
36908
|
-
export interface ImaOverrideSpecificationHeatTreatmentResultsDto {
|
|
36909
|
-
heatTreatmentOverrides?: ImaOverrideUpdateMaterialCheckResultLineDto[] | null;
|
|
36910
36510
|
}
|
|
36911
36511
|
|
|
36912
36512
|
export interface ImaUpdateMaterialCheckMetadataRequestDto {
|
|
@@ -36964,7 +36564,7 @@ export interface ImaMaterialCheckLiteDto {
|
|
|
36964
36564
|
|
|
36965
36565
|
export interface ImaMaterialChecksPageRequestDto {
|
|
36966
36566
|
pageSize?: number | null;
|
|
36967
|
-
orderBy?: ImaMaterialChecksPageOrderRequestDto
|
|
36567
|
+
orderBy?: ImaMaterialChecksPageOrderRequestDto | null;
|
|
36968
36568
|
searchQuery?: string | null;
|
|
36969
36569
|
fileNameFilter?: string | null;
|
|
36970
36570
|
specificationFilter?: string | null;
|
|
@@ -37135,6 +36735,7 @@ export interface ImaSpecificationDto {
|
|
|
37135
36735
|
chemistrySpecification: ImaChemistrySpecificationDto;
|
|
37136
36736
|
mechanicalSpecification: ImaMechanicalSpecificationDto;
|
|
37137
36737
|
ferriteSpecification: ImaFerriteSpecificationDto;
|
|
36738
|
+
documentTypesSpecification: ImaDocumentTypesSpecificationDto;
|
|
37138
36739
|
heatTreatmentSpecifications: ImaHeatTreatmentSpecificationDto[];
|
|
37139
36740
|
}
|
|
37140
36741
|
|
|
@@ -37176,6 +36777,18 @@ export interface ImaFerriteSpecificationDto {
|
|
|
37176
36777
|
ferriteContent?: ImaSpecificationLineDto | null;
|
|
37177
36778
|
}
|
|
37178
36779
|
|
|
36780
|
+
export interface ImaDocumentTypesSpecificationDto {
|
|
36781
|
+
ultrasonicControlCertificate?: boolean;
|
|
36782
|
+
radiologicalReport?: boolean;
|
|
36783
|
+
liquidPenetrantCertificate?: boolean;
|
|
36784
|
+
magneticParticle?: boolean;
|
|
36785
|
+
pmi?: boolean;
|
|
36786
|
+
hydrostatic?: boolean;
|
|
36787
|
+
visualReport?: boolean;
|
|
36788
|
+
dimensionalReport?: boolean;
|
|
36789
|
+
microExaminationReport?: boolean;
|
|
36790
|
+
}
|
|
36791
|
+
|
|
37179
36792
|
export interface ImaHeatTreatmentSpecificationDto {
|
|
37180
36793
|
step: number;
|
|
37181
36794
|
cooling?: ImaHeatTreatmentSpecificationCoolingDto | null;
|
|
@@ -37222,6 +36835,7 @@ export interface ImaUpdateSpecificationDto {
|
|
|
37222
36835
|
chemistrySpecification?: ImaChemistrySpecificationDto | null;
|
|
37223
36836
|
mechanicalSpecification?: ImaMechanicalSpecificationDto | null;
|
|
37224
36837
|
ferriteSpecification?: ImaFerriteSpecificationDto | null;
|
|
36838
|
+
documentTypesSpecification?: ImaDocumentTypesSpecificationDto | null;
|
|
37225
36839
|
heatSpecifications?: ImaHeatTreatmentSpecificationDto[] | null;
|
|
37226
36840
|
}
|
|
37227
36841
|
|
|
@@ -38445,7 +38059,6 @@ export interface WorkorderDiscussionMessageDto {
|
|
|
38445
38059
|
operationName?: string | null;
|
|
38446
38060
|
resourceId?: string | null;
|
|
38447
38061
|
created?: Date;
|
|
38448
|
-
messageType?: DiscussionMessageType;
|
|
38449
38062
|
}
|
|
38450
38063
|
|
|
38451
38064
|
export interface WorkOrderDiscussionContent {
|
|
@@ -38455,14 +38068,11 @@ export interface WorkOrderDiscussionContent {
|
|
|
38455
38068
|
|
|
38456
38069
|
export type WorkOrderDiscussionContentType = 0 | 1;
|
|
38457
38070
|
|
|
38458
|
-
export type DiscussionMessageType = "Public" | "Planner";
|
|
38459
|
-
|
|
38460
38071
|
export interface AddDiscussionMessageRequest {
|
|
38461
38072
|
message: string;
|
|
38462
38073
|
operationId?: string | null;
|
|
38463
38074
|
operationName?: string | null;
|
|
38464
38075
|
resourceId?: string | null;
|
|
38465
|
-
messageType?: DiscussionMessageType;
|
|
38466
38076
|
}
|
|
38467
38077
|
|
|
38468
38078
|
export interface WorkorderDiscussionReadStatusDto {
|