@ignos/api-client 20260721.191.1-alpha → 20260727.193.1

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.
@@ -21970,445 +21970,6 @@ export class MesOrMoveClient extends AuthorizedApiBase implements IMesOrMoveClie
21970
21970
  }
21971
21971
  }
21972
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
-
22045
- publish(resourceGroupId: string, request: PublishPlanRequest): Promise<PlannerPlanDto> {
22046
- let url_ = this.baseUrl + "/mes/planner/plan/{resourceGroupId}/publish";
22047
- if (resourceGroupId === undefined || resourceGroupId === null)
22048
- throw new globalThis.Error("The parameter 'resourceGroupId' must be defined.");
22049
- url_ = url_.replace("{resourceGroupId}", encodeURIComponent("" + resourceGroupId));
22050
- url_ = url_.replace(/[?&]$/, "");
22051
-
22052
- const content_ = JSON.stringify(request);
22053
-
22054
- let options_: RequestInit = {
22055
- body: content_,
22056
- method: "POST",
22057
- headers: {
22058
- "Content-Type": "application/json",
22059
- "Accept": "application/json"
22060
- }
22061
- };
22062
-
22063
- return this.transformOptions(options_).then(transformedOptions_ => {
22064
- return this.http.fetch(url_, transformedOptions_);
22065
- }).then((_response: Response) => {
22066
- return this.processPublish(_response);
22067
- });
22068
- }
22069
-
22070
- protected processPublish(response: Response): Promise<PlannerPlanDto> {
22071
- const status = response.status;
22072
- let _headers: any = {}; if (response.headers && response.headers.forEach) { response.headers.forEach((v: any, k: any) => _headers[k] = v); };
22073
- if (status === 200) {
22074
- return response.text().then((_responseText) => {
22075
- let result200: any = null;
22076
- result200 = _responseText === "" ? null : JSON.parse(_responseText, this.jsonParseReviver) as PlannerPlanDto;
22077
- return result200;
22078
- });
22079
- } else if (status !== 200 && status !== 204) {
22080
- return response.text().then((_responseText) => {
22081
- return throwException("An unexpected server error occurred.", status, _responseText, _headers);
22082
- });
22083
- }
22084
- return Promise.resolve<PlannerPlanDto>(null as any);
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);
22409
- }
22410
- }
22411
-
22412
21973
  export interface IMesProductionOrderAttachmentClient {
22413
21974
 
22414
21975
  /**
@@ -23030,7 +22591,7 @@ export class MesProductionOrderClient extends AuthorizedApiBase implements IMesP
23030
22591
 
23031
22592
  export interface IMesProductionScheduleClient {
23032
22593
 
23033
- listProductionScheduleOperations(resourceGroup: string | null | undefined, resourceId: string | null | undefined, departmentNumber: string | null | undefined, pageSize: number | undefined, continuationToken: string | null | undefined, workOrderId: string | null | undefined, projectId: string | null | undefined, partNumber: string | null | undefined, partName: string | null | undefined, material: string | null | undefined, includeDiscussionSummary: boolean | undefined): Promise<PagedResultOfProductionScheduleOperationDto>;
22594
+ listProductionScheduleOperations(resourceGroup: string | null | undefined, resourceId: string | null | undefined, departmentNumber: string | null | undefined, pageSize: number | undefined, continuationToken: string | null | undefined, workOrderId: string | null | undefined, projectId: string | null | undefined, partNumber: string | null | undefined, partName: string | null | undefined, material: string | null | undefined): Promise<PagedResultOfProductionScheduleOperationDto>;
23034
22595
 
23035
22596
  postListProductionScheduleOperations(request: ListProductionScheduleOperationsRequest | undefined): Promise<PagedResultOfProductionScheduleOperationDto>;
23036
22597
 
@@ -23055,7 +22616,7 @@ export class MesProductionScheduleClient extends AuthorizedApiBase implements IM
23055
22616
  this.baseUrl = baseUrl ?? "";
23056
22617
  }
23057
22618
 
23058
- listProductionScheduleOperations(resourceGroup: string | null | undefined, resourceId: string | null | undefined, departmentNumber: string | null | undefined, pageSize: number | undefined, continuationToken: string | null | undefined, workOrderId: string | null | undefined, projectId: string | null | undefined, partNumber: string | null | undefined, partName: string | null | undefined, material: string | null | undefined, includeDiscussionSummary: boolean | undefined): Promise<PagedResultOfProductionScheduleOperationDto> {
22619
+ listProductionScheduleOperations(resourceGroup: string | null | undefined, resourceId: string | null | undefined, departmentNumber: string | null | undefined, pageSize: number | undefined, continuationToken: string | null | undefined, workOrderId: string | null | undefined, projectId: string | null | undefined, partNumber: string | null | undefined, partName: string | null | undefined, material: string | null | undefined): Promise<PagedResultOfProductionScheduleOperationDto> {
23059
22620
  let url_ = this.baseUrl + "/mes/productionschedule?";
23060
22621
  if (resourceGroup !== undefined && resourceGroup !== null)
23061
22622
  url_ += "resourceGroup=" + encodeURIComponent("" + resourceGroup) + "&";
@@ -23079,10 +22640,6 @@ export class MesProductionScheduleClient extends AuthorizedApiBase implements IM
23079
22640
  url_ += "partName=" + encodeURIComponent("" + partName) + "&";
23080
22641
  if (material !== undefined && material !== null)
23081
22642
  url_ += "material=" + encodeURIComponent("" + material) + "&";
23082
- if (includeDiscussionSummary === null)
23083
- throw new globalThis.Error("The parameter 'includeDiscussionSummary' cannot be null.");
23084
- else if (includeDiscussionSummary !== undefined)
23085
- url_ += "includeDiscussionSummary=" + encodeURIComponent("" + includeDiscussionSummary) + "&";
23086
22643
  url_ = url_.replace(/[?&]$/, "");
23087
22644
 
23088
22645
  let options_: RequestInit = {
@@ -32958,6 +32515,7 @@ export interface MrbCompanySettingsDto {
32958
32515
  detailedTransactionsMissingInErp: boolean;
32959
32516
  allowMaterialReplacementOnConsumptions: boolean;
32960
32517
  nonSplittableTraceUnits: string[];
32518
+ disableTraceEditing: boolean;
32961
32519
  }
32962
32520
 
32963
32521
  export interface UpsertMrbCompanySettings {
@@ -32976,6 +32534,7 @@ export interface UpsertMrbCompanySettings {
32976
32534
  detailedTransactionsMissingInErp: boolean;
32977
32535
  allowMaterialReplacementOnConsumptions: boolean;
32978
32536
  nonSplittableTraceUnits: string[];
32537
+ disableTraceEditing: boolean;
32979
32538
  }
32980
32539
 
32981
32540
  export interface TraceDto {
@@ -35641,88 +35200,6 @@ export interface LabelId {
35641
35200
  trackingId?: string | null;
35642
35201
  }
35643
35202
 
35644
- export interface PlannerPlanDto {
35645
- resourceGroupId: string;
35646
- sequence: PlannerOperationDto[];
35647
- lockedCount: number;
35648
- planSavedAt?: Date | null;
35649
- isDraft: boolean;
35650
- publishedETag?: string | null;
35651
- weeklyCapacities: WeekCapacityDto[];
35652
- }
35653
-
35654
- export interface PlannerOperationDto {
35655
- id: string;
35656
- productionOrderNumber: string;
35657
- operation: number;
35658
- operationName: string;
35659
- plannedStart: Date;
35660
- plannedEnd?: Date | null;
35661
- status: OperationStatusDto;
35662
- resourceId: string;
35663
- resourceName: string;
35664
- resourceDepartmentNumber?: string | null;
35665
- resourceDepartmentName?: string | null;
35666
- partNumber: string;
35667
- partName?: string | null;
35668
- partMaterial?: string | null;
35669
- quantity: number;
35670
- producedQuantity: number;
35671
- totalPlannedHours?: number;
35672
- totalUsedHours?: number;
35673
- customerName?: string | null;
35674
- project?: WorkOrderProjectDto | null;
35675
- sequenceNumber: number;
35676
- isManuallyLocked: boolean;
35677
- weekGroup: string;
35678
- programStatus?: ProgramStatus | null;
35679
- hasNotes?: boolean;
35680
- notesUnread?: boolean;
35681
- }
35682
-
35683
- export type ProgramStatus = "Blank" | "NotOk" | "Ok";
35684
-
35685
- export interface WeekCapacityDto {
35686
- weekGroup: string;
35687
- weekStart: Date;
35688
- capacityHours: number;
35689
- }
35690
-
35691
- export interface PublishPlanRequest {
35692
- /** ETag of the published plan the caller last read, used for optimistic
35693
- concurrency. Null if the caller never observed a published plan. */
35694
- publishedETag?: string | null;
35695
- comment?: string | null;
35696
- /** The caller's unsaved working sequence to publish. When null, the
35697
- persisted active plan (draft, else published) is published instead. */
35698
- sequence?: PlannerSequenceInput | null;
35699
- }
35700
-
35701
- export interface PlannerSequenceInput {
35702
- orderedOperationKeys: string[];
35703
- lockedCount: number;
35704
- weekGroups?: { [key: string]: string; } | null;
35705
- }
35706
-
35707
- export interface PlannerPlanEventDto {
35708
- id: string;
35709
- eventType: PlannerEventType;
35710
- occurredAt: Date;
35711
- by?: string | null;
35712
- comment?: string | null;
35713
- operationCount: number;
35714
- lockedCount: number;
35715
- }
35716
-
35717
- export type PlannerEventType = "Published" | "DraftSaved" | "ResetToErp";
35718
-
35719
- export interface SetProgramStatus {
35720
- workOrderId?: string;
35721
- operationNumber?: number;
35722
- status?: ProgramStatus;
35723
- resourceId?: string;
35724
- }
35725
-
35726
35203
  export type ProductionOrderAttachmentType = "Url" | "Note" | "Image" | "File";
35727
35204
 
35728
35205
  export interface WorkOrderAttachmentDto {
@@ -36021,9 +35498,6 @@ export interface ProductionScheduleOperationDto {
36021
35498
  materialPickStatus: MaterialPickStatus;
36022
35499
  productionStatus: OperationStatusDto;
36023
35500
  setupStatus?: OperationStatusDto | null;
36024
- programStatus?: ProgramStatus | null;
36025
- hasNotes: boolean;
36026
- notesUnread: boolean;
36027
35501
  }
36028
35502
 
36029
35503
  export interface SurroundingOperationDto {
@@ -36091,7 +35565,6 @@ export interface ListProductionScheduleOperationsRequest {
36091
35565
  operationStatuses?: OperationStatusDto[] | null;
36092
35566
  after?: Date | null;
36093
35567
  before?: Date | null;
36094
- includeDiscussionSummary?: boolean;
36095
35568
  }
36096
35569
 
36097
35570
  export interface ProductionScheduleFiltersDto {
@@ -36399,7 +35872,6 @@ export interface ImaCertificateTypeRequirementsDto {
36399
35872
  productAndOrderInformation: ImaCertificateTypeProductAndOrderInformationRequirementsDto;
36400
35873
  testMethodsAndReferences: ImaCertificateTypeTestMethodsAndReferencesRequirementsDto;
36401
35874
  testResults: ImaCertificateTypeTestResultsRequirementsDto;
36402
- documentTypes: ImaCertificateTypeDocumentTypesRequirementsDto;
36403
35875
  }
36404
35876
 
36405
35877
  export interface ImaCdfEntityReadBase {
@@ -36409,6 +35881,7 @@ export interface ImaCertificateTypeManufacturerRequirementsDto extends ImaCdfEnt
36409
35881
  manufacturer?: boolean;
36410
35882
  address?: boolean;
36411
35883
  contact?: boolean;
35884
+ steelPlant?: boolean;
36412
35885
  }
36413
35886
 
36414
35887
  export interface ImaCertificateTypeSignatureRequirementsDto extends ImaCdfEntityReadBase {
@@ -36430,6 +35903,7 @@ export interface ImaCertificateTypeThirdPartyRequirementsDto extends ImaCdfEntit
36430
35903
  }
36431
35904
 
36432
35905
  export interface ImaCertificateTypeCertificationRequirementsDto extends ImaCdfEntityReadBase {
35906
+ certificateType?: boolean;
36433
35907
  certificateOfCompliance?: boolean;
36434
35908
  inspectionCertificate?: boolean;
36435
35909
  }
@@ -36442,7 +35916,8 @@ export interface ImaCertificateTypeProductAndOrderInformationRequirementsDto ext
36442
35916
  dimensionsOrWeight?: boolean;
36443
35917
  batchNumber?: boolean;
36444
35918
  heatNumber?: boolean;
36445
- relatedStandards?: boolean;
35919
+ relevantStandard?: boolean;
35920
+ steelMaking?: boolean;
36446
35921
  }
36447
35922
 
36448
35923
  export interface ImaCertificateTypeTestMethodsAndReferencesRequirementsDto extends ImaCdfEntityReadBase {
@@ -36450,28 +35925,14 @@ export interface ImaCertificateTypeTestMethodsAndReferencesRequirementsDto exten
36450
35925
  }
36451
35926
 
36452
35927
  export interface ImaCertificateTypeTestResultsRequirementsDto extends ImaCdfEntityReadBase {
36453
- mechanicalProperties?: boolean;
36454
- chemicalAnalysis?: boolean;
35928
+ tensileTests?: boolean;
35929
+ hardnessTests?: boolean;
36455
35930
  impactTests?: boolean;
35931
+ chemicalAnalysis?: boolean;
36456
35932
  corrosionTests?: boolean;
36457
35933
  ferriteContentAndMicrostructure?: boolean;
36458
35934
  }
36459
35935
 
36460
- export interface ImaCertificateTypeDocumentTypesRequirementsDto extends ImaCdfEntityReadBase {
36461
- heatTreatmentCertificate?: boolean;
36462
- ultrasonicControlCertificate?: boolean;
36463
- liquidPenetrantCertificate?: boolean;
36464
- testReport?: boolean;
36465
- dimensionalReport?: boolean;
36466
- dyePenetrantReport?: boolean;
36467
- visualReport?: boolean;
36468
- certificateOfAnalyticalAndMechanicalTests?: boolean;
36469
- certificateOfTest?: boolean;
36470
- technicalReport?: boolean;
36471
- microExaminationReport?: boolean;
36472
- radiologicalReport?: boolean;
36473
- }
36474
-
36475
35936
  export interface ImaCreateOrCopyCertificateTypeRequestDto {
36476
35937
  name: string;
36477
35938
  revision: string;
@@ -36494,13 +35955,13 @@ export interface ImaCertificateTypeRequirementsUpdateDto {
36494
35955
  productAndOrderInformation?: ImaCertificateTypeProductAndOrderInformationRequirementsUpdateDto | null;
36495
35956
  testMethodsAndReferences?: ImaCertificateTypeTestMethodsAndReferencesRequirementsUpdateDto | null;
36496
35957
  testResults?: ImaCertificateTypeTestResultsRequirementsUpdateDto | null;
36497
- documentTypes?: ImaCertificateTypeDocumentTypesRequirementsUpdateDto | null;
36498
35958
  }
36499
35959
 
36500
35960
  export interface ImaCertificateTypeManufacturerRequirementsUpdateDto {
36501
35961
  manufacturer?: boolean | null;
36502
35962
  address?: boolean | null;
36503
35963
  contact?: boolean | null;
35964
+ steelPlant?: boolean | null;
36504
35965
  }
36505
35966
 
36506
35967
  export interface ImaCertificateTypeSignatureRequirementsUpdateDto {
@@ -36522,6 +35983,7 @@ export interface ImaCertificateTypeThirdPartyRequirementsUpdateDto {
36522
35983
  }
36523
35984
 
36524
35985
  export interface ImaCertificateTypeCertificationRequirementsUpdateDto {
35986
+ certificateType?: boolean | null;
36525
35987
  certificateOfCompliance?: boolean | null;
36526
35988
  inspectionCertificate?: boolean | null;
36527
35989
  }
@@ -36534,7 +35996,8 @@ export interface ImaCertificateTypeProductAndOrderInformationRequirementsUpdateD
36534
35996
  dimensionsOrWeight?: boolean | null;
36535
35997
  batchNumber?: boolean | null;
36536
35998
  heatNumber?: boolean | null;
36537
- relatedStandards?: boolean | null;
35999
+ relevantStandard?: boolean | null;
36000
+ steelMaking?: boolean | null;
36538
36001
  }
36539
36002
 
36540
36003
  export interface ImaCertificateTypeTestMethodsAndReferencesRequirementsUpdateDto {
@@ -36542,28 +36005,14 @@ export interface ImaCertificateTypeTestMethodsAndReferencesRequirementsUpdateDto
36542
36005
  }
36543
36006
 
36544
36007
  export interface ImaCertificateTypeTestResultsRequirementsUpdateDto {
36545
- mechanicalProperties?: boolean | null;
36546
- chemicalAnalysis?: boolean | null;
36008
+ tensileTests?: boolean | null;
36009
+ hardnessTests?: boolean | null;
36547
36010
  impactTests?: boolean | null;
36011
+ chemicalAnalysis?: boolean | null;
36548
36012
  corrosionTests?: boolean | null;
36549
36013
  ferriteContentAndMicrostructure?: boolean | null;
36550
36014
  }
36551
36015
 
36552
- export interface ImaCertificateTypeDocumentTypesRequirementsUpdateDto {
36553
- heatTreatmentCertificate?: boolean | null;
36554
- ultrasonicControlCertificate?: boolean | null;
36555
- liquidPenetrantCertificate?: boolean | null;
36556
- testReport?: boolean | null;
36557
- dimensionalReport?: boolean | null;
36558
- dyePenetrantReport?: boolean | null;
36559
- visualReport?: boolean | null;
36560
- certificateOfAnalyticalAndMechanicalTests?: boolean | null;
36561
- certificateOfTest?: boolean | null;
36562
- technicalReport?: boolean | null;
36563
- microExaminationReport?: boolean | null;
36564
- radiologicalReport?: boolean | null;
36565
- }
36566
-
36567
36016
  export interface ImaCertificateTypeLiteDto {
36568
36017
  certificateTypeId: string;
36569
36018
  version: number;
@@ -36638,14 +36087,13 @@ export interface ImaCertificateTypeResultsDto extends ImaCdfEntityReadBase {
36638
36087
  certification: ImaCertificateTypeCertificationResultsDto;
36639
36088
  productAndOrderInformation: ImaCertificateTypeProductAndOrderInformationResultsDto;
36640
36089
  testMethodsAndReferences: ImaCertificateTypeTestMethodsAndReferencesResultsDto;
36641
- testResults: ImaCertificateTypeTestResultsResultsDto;
36642
- documentTypes: ImaCertificateTypeDocumentTypesResultsDto;
36643
36090
  }
36644
36091
 
36645
36092
  export interface ImaCertificateTypeManufacturerResultsDto extends ImaCdfEntityReadBase {
36646
36093
  manufacturer?: ImaCertificateTypeResultLine | null;
36647
36094
  address?: ImaCertificateTypeResultLine | null;
36648
36095
  contact?: ImaCertificateTypeResultLine | null;
36096
+ steelPlant?: ImaCertificateTypeResultLine | null;
36649
36097
  }
36650
36098
 
36651
36099
  export interface ImaCertificateTypeResultLine extends ImaCdfEntityReadBase {
@@ -36682,10 +36130,20 @@ export interface ImaCertificateTypeThirdPartyResultsDto extends ImaCdfEntityRead
36682
36130
  }
36683
36131
 
36684
36132
  export interface ImaCertificateTypeCertificationResultsDto extends ImaCdfEntityReadBase {
36685
- certificateOfCompliance?: ImaCertificateTypeResultLine | null;
36133
+ certificateType?: ImaCertificateTypeResultLine | null;
36134
+ certificateOfCompliance?: ImaSupplementaryCheckResultDto | null;
36686
36135
  inspectionCertificate?: ImaCertificateTypeResultLine | null;
36687
36136
  }
36688
36137
 
36138
+ export interface ImaSupplementaryCheckResultDto extends ImaCdfEntityReadBase {
36139
+ status?: string | null;
36140
+ documentId?: string | null;
36141
+ acceptable?: boolean | null;
36142
+ standards: string[];
36143
+ summary?: string | null;
36144
+ override?: ImaResultLineOverrideDto | null;
36145
+ }
36146
+
36689
36147
  export interface ImaCertificateTypeProductAndOrderInformationResultsDto extends ImaCdfEntityReadBase {
36690
36148
  productDescription?: ImaCertificateTypeResultLine | null;
36691
36149
  materialGrade?: ImaCertificateTypeResultLine | null;
@@ -36694,41 +36152,32 @@ export interface ImaCertificateTypeProductAndOrderInformationResultsDto extends
36694
36152
  dimensionsOrWeight?: ImaCertificateTypeResultLine | null;
36695
36153
  batchNumber?: ImaCertificateTypeResultLine | null;
36696
36154
  heatNumber?: ImaCertificateTypeResultLine | null;
36697
- relatedStandards?: ImaCertificateTypeResultLine | null;
36698
- }
36699
-
36700
- export interface ImaCertificateTypeTestMethodsAndReferencesResultsDto extends ImaCdfEntityReadBase {
36701
- usedStandards?: ImaCertificateTypeResultLine | null;
36155
+ relevantStandard?: ImaCertificateTypeResultLine | null;
36156
+ steelMaking: ImaSteelMakingResultDto;
36702
36157
  }
36703
36158
 
36704
- export interface ImaCertificateTypeTestResultsResultsDto extends ImaCdfEntityReadBase {
36705
- mechanicalProperties?: ImaCertificateTypeResultLine | null;
36706
- chemicalAnalysis?: ImaCertificateTypeResultLine | null;
36707
- impactTests?: ImaCertificateTypeResultLine | null;
36708
- corrosionTests?: ImaCertificateTypeResultLine | null;
36709
- ferriteContentAndMicrostructure?: ImaCertificateTypeResultLine | null;
36159
+ export interface ImaSteelMakingResultDto extends ImaCdfEntityReadBase {
36160
+ raw?: string[] | null;
36161
+ chain?: string[] | null;
36162
+ unmatched?: string[] | null;
36710
36163
  }
36711
36164
 
36712
- export interface ImaCertificateTypeDocumentTypesResultsDto extends ImaCdfEntityReadBase {
36713
- heatTreatmentCertificate?: ImaCertificateTypeResultLine | null;
36714
- ultrasonicControlCertificate?: ImaCertificateTypeResultLine | null;
36715
- liquidPenetrantCertificate?: ImaCertificateTypeResultLine | null;
36716
- testReport?: ImaCertificateTypeResultLine | null;
36717
- dimensionalReport?: ImaCertificateTypeResultLine | null;
36718
- dyePenetrantReport?: ImaCertificateTypeResultLine | null;
36719
- visualReport?: ImaCertificateTypeResultLine | null;
36720
- certificateOfAnalyticalAndMechanicalTests?: ImaCertificateTypeResultLine | null;
36721
- certificateOfTest?: ImaCertificateTypeResultLine | null;
36722
- technicalReport?: ImaCertificateTypeResultLine | null;
36723
- microExaminationReport?: ImaCertificateTypeResultLine | null;
36724
- radiologicalReport?: ImaCertificateTypeResultLine | null;
36165
+ export interface ImaCertificateTypeTestMethodsAndReferencesResultsDto extends ImaCdfEntityReadBase {
36166
+ usedStandards?: ImaCertificateTypeResultLine | null;
36725
36167
  }
36726
36168
 
36727
36169
  export interface ImaSpecificationResultsDto extends ImaCdfEntityReadBase {
36728
36170
  chemistry: ImaSpecificationChemistryResultsDto;
36729
36171
  mechanical: ImaSpecificationMechanicalResultsDto;
36730
36172
  ferrite: ImaSpecificationFerriteResultsDto;
36731
- heatTreatments: ImaSpecificationHeatTreatmentResultDto[];
36173
+ chemicalAnalysis: ImaChemicalAnalysisResultDto[];
36174
+ tensileTests: ImaTensileTestResultDto[];
36175
+ hardnessTests: ImaHardnessTestResultDto[];
36176
+ impactTests: ImaImpactTestResultDto[];
36177
+ corrosionTests: ImaCorrosionTestResultDto[];
36178
+ ferriteContentAndMicrostructure: ImaFerriteResultDto[];
36179
+ heatTreatments: ImaHeatTreatmentResultDto[];
36180
+ documentTypes: ImaDocumentTypesResultsDto;
36732
36181
  }
36733
36182
 
36734
36183
  export interface ImaSpecificationChemistryResultsDto extends ImaCdfEntityReadBase {
@@ -36778,30 +36227,146 @@ export interface ImaSpecificationFerriteResultLineDto extends ImaCdfEntityReadBa
36778
36227
  measurementMethod?: string | null;
36779
36228
  }
36780
36229
 
36781
- export interface ImaSpecificationHeatTreatmentResultDto extends ImaCdfEntityReadBase {
36782
- step: number;
36783
- cooling?: ImaSpecificationHeatTreatmentCoolingResult | null;
36784
- heating?: ImaSpecificationHeatTreatmentHeatingResult | null;
36230
+ export interface ImaChemicalAnalysisResultDto extends ImaCdfEntityReadBase {
36231
+ sampleReference?: string | null;
36232
+ analysisType?: string | null;
36233
+ elements: ImaChemicalElementResultDto[];
36234
+ indices: ImaChemicalIndexResultDto[];
36235
+ testStandards: string[];
36236
+ override?: ImaResultLineOverrideDto | null;
36237
+ }
36238
+
36239
+ export interface ImaChemicalElementResultDto extends ImaCdfEntityReadBase {
36240
+ symbol?: string | null;
36241
+ value?: ImaResultValueDto | null;
36242
+ }
36243
+
36244
+ export interface ImaResultValueDto extends ImaCdfEntityReadBase {
36245
+ readValue?: string | null;
36246
+ value?: number | null;
36247
+ unit?: string | null;
36248
+ override?: ImaResultLineOverrideDto | null;
36249
+ }
36250
+
36251
+ export interface ImaChemicalIndexResultDto extends ImaCdfEntityReadBase {
36252
+ name?: string | null;
36253
+ value?: number | null;
36254
+ }
36255
+
36256
+ export interface ImaTensileTestResultDto extends ImaCdfEntityReadBase {
36257
+ sampleReference?: string | null;
36258
+ orientation?: string | null;
36259
+ testLocation?: string | null;
36260
+ temperature?: ImaResultValueDto | null;
36261
+ roomTemperature?: boolean | null;
36262
+ yieldStrengths: ImaYieldStrengthResultDto[];
36263
+ tensileStrength?: ImaResultValueDto | null;
36264
+ yieldTensileRatio?: number | null;
36265
+ elongations: ImaElongationResultDto[];
36266
+ reductionOfArea?: ImaResultValueDto | null;
36267
+ testStandards: string[];
36268
+ override?: ImaResultLineOverrideDto | null;
36269
+ }
36270
+
36271
+ export interface ImaYieldStrengthResultDto extends ImaCdfEntityReadBase {
36272
+ label?: string | null;
36273
+ value?: ImaResultValueDto | null;
36785
36274
  }
36786
36275
 
36787
- export interface ImaSpecificationHeatTreatmentCoolingResult extends ImaCdfEntityReadBase {
36788
- coolingMethods?: string[] | null;
36789
- temperature?: ImaSpecificationResultLineDto | null;
36790
- duration?: ImaSpecificationResultLineDto | null;
36276
+ export interface ImaElongationResultDto extends ImaCdfEntityReadBase {
36277
+ gauge?: string | null;
36278
+ value?: ImaResultValueDto | null;
36791
36279
  }
36792
36280
 
36793
- export interface ImaSpecificationHeatTreatmentHeatingResult extends ImaCdfEntityReadBase {
36794
- heatingMethod?: string | null;
36795
- temperature?: ImaSpecificationResultLineDto | null;
36796
- duration?: ImaSpecificationResultLineDto | null;
36281
+ export interface ImaHardnessTestResultDto extends ImaCdfEntityReadBase {
36282
+ sampleReference?: string | null;
36283
+ orientation?: string | null;
36284
+ testLocation?: string | null;
36285
+ readings: ImaHardnessReadingResultDto[];
36286
+ testStandards: string[];
36287
+ override?: ImaResultLineOverrideDto | null;
36288
+ }
36289
+
36290
+ export interface ImaHardnessReadingResultDto extends ImaCdfEntityReadBase {
36291
+ label?: string | null;
36292
+ scale?: string | null;
36293
+ value?: number | null;
36294
+ }
36295
+
36296
+ export interface ImaImpactTestResultDto extends ImaCdfEntityReadBase {
36297
+ sampleReference?: string | null;
36298
+ orientation?: string | null;
36299
+ testLocation?: string | null;
36300
+ temperature?: ImaResultValueDto | null;
36301
+ roomTemperature?: boolean | null;
36302
+ testLabel?: string | null;
36303
+ notchType?: string | null;
36304
+ specimenSize?: string | null;
36305
+ individualValues: ImaResultValueDto[];
36306
+ reportedAverage?: ImaResultValueDto | null;
36307
+ reportedMinimum?: ImaResultValueDto | null;
36308
+ testStandards: string[];
36309
+ override?: ImaResultLineOverrideDto | null;
36310
+ }
36311
+
36312
+ export interface ImaCorrosionTestResultDto extends ImaCdfEntityReadBase {
36313
+ sampleReference?: string | null;
36314
+ testLocation?: string | null;
36315
+ testMethod?: string | null;
36316
+ testTemperature?: ImaResultValueDto | null;
36317
+ roomTemperature?: boolean | null;
36318
+ weightLoss?: ImaResultValueDto | null;
36319
+ pitting?: boolean | null;
36320
+ result?: string | null;
36321
+ acceptable?: boolean | null;
36322
+ override?: ImaResultLineOverrideDto | null;
36323
+ }
36324
+
36325
+ export interface ImaFerriteResultDto extends ImaCdfEntityReadBase {
36326
+ sampleReference?: string | null;
36327
+ testLocation?: string | null;
36328
+ ferrite?: ImaResultValueDto | null;
36329
+ ferriteTolerance?: number | null;
36330
+ reportedRange?: string | null;
36331
+ intermetallicPhases?: boolean | null;
36332
+ grainSize?: string | null;
36333
+ testStandards: string[];
36334
+ override?: ImaResultLineOverrideDto | null;
36335
+ }
36336
+
36337
+ export interface ImaHeatTreatmentResultDto extends ImaCdfEntityReadBase {
36338
+ stepType?: string | null;
36339
+ treatmentName?: string | null;
36340
+ temperature?: ImaResultValueDto | null;
36341
+ temperatureMin?: number | null;
36342
+ temperatureMax?: number | null;
36343
+ soakTime?: ImaResultValueDto | null;
36344
+ soakRate?: string | null;
36345
+ coolingMedium?: string | null;
36346
+ override?: ImaResultLineOverrideDto | null;
36347
+ }
36348
+
36349
+ export interface ImaDocumentTypesResultsDto extends ImaCdfEntityReadBase {
36350
+ ultrasonicControlCertificate?: ImaSupplementaryCheckResultDto | null;
36351
+ radiologicalReport?: ImaSupplementaryCheckResultDto | null;
36352
+ liquidPenetrantCertificate?: ImaSupplementaryCheckResultDto | null;
36353
+ magneticParticle?: ImaSupplementaryCheckResultDto | null;
36354
+ pmi?: ImaSupplementaryCheckResultDto | null;
36355
+ hydrostatic?: ImaSupplementaryCheckResultDto | null;
36356
+ visualReport?: ImaSupplementaryCheckResultDto | null;
36357
+ dimensionalReport?: ImaSupplementaryCheckResultDto | null;
36358
+ microExaminationReport?: ImaSupplementaryCheckResultDto | null;
36797
36359
  }
36798
36360
 
36799
36361
  export interface ImaOverrideMaterialCheckRequestDto {
36800
36362
  certificateTypeSection?: ImaOverrideCertificateTypeResultsDto | null;
36801
- chemistrySpecificationSection?: ImaOverrideSpecificationChemistryResultsDto | null;
36802
- mechanicalSpecificationSection?: ImaOverrideSpecificationMechanicalResultsDto | null;
36803
- ferriteSpecificationSection?: ImaOverrideSpecificationFerriteResultsDto | null;
36804
- heatSpecificationSection?: ImaOverrideSpecificationHeatTreatmentResultsDto | null;
36363
+ chemicalAnalysisSection?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
36364
+ tensileTestSection?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
36365
+ hardnessTestSection?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
36366
+ impactTestSection?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
36367
+ corrosionTestSection?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
36368
+ ferriteResultSection?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
36369
+ documentTypesSection?: ImaOverrideDocumentTypesResultsDto | null;
36805
36370
  }
36806
36371
 
36807
36372
  export interface ImaOverrideCertificateTypeResultsDto {
@@ -36811,14 +36376,13 @@ export interface ImaOverrideCertificateTypeResultsDto {
36811
36376
  certification?: ImaOverrideCertificateTypeCertificationResultsDto | null;
36812
36377
  productAndOrderInformation?: ImaOverrideCertificateTypeProductAndOrderInformationResultsDto | null;
36813
36378
  testMethodsAndReferences?: ImaOverrideCertificateTypeTestMethodsAndReferencesResultsDto | null;
36814
- testResults?: ImaOverrideCertificateTypeTestResultsResultsDto | null;
36815
- documentTypes?: ImaOverrideCertificateTypeDocumentTypesResultsDto | null;
36816
36379
  }
36817
36380
 
36818
36381
  export interface ImaOverrideCertificateTypeManufacturerResultsDto {
36819
36382
  manufacturer?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
36820
36383
  address?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
36821
36384
  contact?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
36385
+ steelPlant?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
36822
36386
  }
36823
36387
 
36824
36388
  export interface ImaOverrideUpdateMaterialCheckResultLineDto {
@@ -36845,6 +36409,7 @@ export interface ImaOverrideCertificateTypeThirdPartyResultsDto {
36845
36409
  }
36846
36410
 
36847
36411
  export interface ImaOverrideCertificateTypeCertificationResultsDto {
36412
+ certificateType?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
36848
36413
  certificateOfCompliance?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
36849
36414
  inspectionCertificate?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
36850
36415
  }
@@ -36857,66 +36422,23 @@ export interface ImaOverrideCertificateTypeProductAndOrderInformationResultsDto
36857
36422
  dimensionsOrWeight?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
36858
36423
  batchNumber?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
36859
36424
  heatNumber?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
36860
- relatedStandards?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
36425
+ relevantStandard?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
36861
36426
  }
36862
36427
 
36863
36428
  export interface ImaOverrideCertificateTypeTestMethodsAndReferencesResultsDto {
36864
36429
  usedStandards?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
36865
36430
  }
36866
36431
 
36867
- export interface ImaOverrideCertificateTypeTestResultsResultsDto {
36868
- mechanicalProperties?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
36869
- chemicalAnalysis?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
36870
- impactTests?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
36871
- corrosionTests?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
36872
- ferriteContentAndMicrostructure?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
36873
- }
36874
-
36875
- export interface ImaOverrideCertificateTypeDocumentTypesResultsDto {
36876
- heatTreatmentCertificate?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
36432
+ export interface ImaOverrideDocumentTypesResultsDto {
36877
36433
  ultrasonicControlCertificate?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
36434
+ radiologicalReport?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
36878
36435
  liquidPenetrantCertificate?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
36879
- testReport?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
36880
- dimensionalReport?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
36881
- dyePenetrantReport?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
36436
+ magneticParticle?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
36437
+ pmi?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
36438
+ hydrostatic?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
36882
36439
  visualReport?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
36883
- certificateOfAnalyticalAndMechanicalTests?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
36884
- certificateOfTest?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
36885
- technicalReport?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
36440
+ dimensionalReport?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
36886
36441
  microExaminationReport?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
36887
- radiologicalReport?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
36888
- }
36889
-
36890
- export interface ImaOverrideSpecificationChemistryResultsDto {
36891
- carbon?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
36892
- manganese?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
36893
- silicon?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
36894
- phosphorus?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
36895
- sulfur?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
36896
- chromium?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
36897
- nickel?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
36898
- molybdenum?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
36899
- copper?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
36900
- nitrogen?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
36901
- wolfram?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
36902
- iron?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
36903
- }
36904
-
36905
- export interface ImaOverrideSpecificationMechanicalResultsDto {
36906
- yieldStrength?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
36907
- tensileStrength?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
36908
- elongation?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
36909
- reductionOfArea?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
36910
- impactEnergy?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
36911
- hardness?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
36912
- }
36913
-
36914
- export interface ImaOverrideSpecificationFerriteResultsDto {
36915
- ferriteContent?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
36916
- }
36917
-
36918
- export interface ImaOverrideSpecificationHeatTreatmentResultsDto {
36919
- heatTreatmentOverrides?: ImaOverrideUpdateMaterialCheckResultLineDto[] | null;
36920
36442
  }
36921
36443
 
36922
36444
  export interface ImaUpdateMaterialCheckMetadataRequestDto {
@@ -36974,7 +36496,7 @@ export interface ImaMaterialCheckLiteDto {
36974
36496
 
36975
36497
  export interface ImaMaterialChecksPageRequestDto {
36976
36498
  pageSize?: number | null;
36977
- orderBy?: ImaMaterialChecksPageOrderRequestDto[] | null;
36499
+ orderBy?: ImaMaterialChecksPageOrderRequestDto | null;
36978
36500
  searchQuery?: string | null;
36979
36501
  fileNameFilter?: string | null;
36980
36502
  specificationFilter?: string | null;
@@ -37145,6 +36667,7 @@ export interface ImaSpecificationDto {
37145
36667
  chemistrySpecification: ImaChemistrySpecificationDto;
37146
36668
  mechanicalSpecification: ImaMechanicalSpecificationDto;
37147
36669
  ferriteSpecification: ImaFerriteSpecificationDto;
36670
+ documentTypesSpecification: ImaDocumentTypesSpecificationDto;
37148
36671
  heatTreatmentSpecifications: ImaHeatTreatmentSpecificationDto[];
37149
36672
  }
37150
36673
 
@@ -37186,6 +36709,18 @@ export interface ImaFerriteSpecificationDto {
37186
36709
  ferriteContent?: ImaSpecificationLineDto | null;
37187
36710
  }
37188
36711
 
36712
+ export interface ImaDocumentTypesSpecificationDto {
36713
+ ultrasonicControlCertificate?: boolean;
36714
+ radiologicalReport?: boolean;
36715
+ liquidPenetrantCertificate?: boolean;
36716
+ magneticParticle?: boolean;
36717
+ pmi?: boolean;
36718
+ hydrostatic?: boolean;
36719
+ visualReport?: boolean;
36720
+ dimensionalReport?: boolean;
36721
+ microExaminationReport?: boolean;
36722
+ }
36723
+
37189
36724
  export interface ImaHeatTreatmentSpecificationDto {
37190
36725
  step: number;
37191
36726
  cooling?: ImaHeatTreatmentSpecificationCoolingDto | null;
@@ -37232,6 +36767,7 @@ export interface ImaUpdateSpecificationDto {
37232
36767
  chemistrySpecification?: ImaChemistrySpecificationDto | null;
37233
36768
  mechanicalSpecification?: ImaMechanicalSpecificationDto | null;
37234
36769
  ferriteSpecification?: ImaFerriteSpecificationDto | null;
36770
+ documentTypesSpecification?: ImaDocumentTypesSpecificationDto | null;
37235
36771
  heatSpecifications?: ImaHeatTreatmentSpecificationDto[] | null;
37236
36772
  }
37237
36773
 
@@ -38455,7 +37991,6 @@ export interface WorkorderDiscussionMessageDto {
38455
37991
  operationName?: string | null;
38456
37992
  resourceId?: string | null;
38457
37993
  created?: Date;
38458
- visibility?: DiscussionVisibility;
38459
37994
  }
38460
37995
 
38461
37996
  export interface WorkOrderDiscussionContent {
@@ -38465,14 +38000,11 @@ export interface WorkOrderDiscussionContent {
38465
38000
 
38466
38001
  export type WorkOrderDiscussionContentType = 0 | 1;
38467
38002
 
38468
- export type DiscussionVisibility = "Public" | "Planner";
38469
-
38470
38003
  export interface AddDiscussionMessageRequest {
38471
38004
  message: string;
38472
38005
  operationId?: string | null;
38473
38006
  operationName?: string | null;
38474
38007
  resourceId?: string | null;
38475
- visibility?: DiscussionVisibility;
38476
38008
  }
38477
38009
 
38478
38010
  export interface WorkorderDiscussionReadStatusDto {