@ignos/api-client 20260711.182.1-alpha → 20260714.184.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 +192 -328
- package/lib/ignosportal-api.js +265 -556
- package/package.json +1 -1
- package/src/ignosportal-api.ts +481 -890
package/lib/ignosportal-api.d.ts
CHANGED
|
@@ -606,7 +606,7 @@ export interface IKpiAdminResourceClient {
|
|
|
606
606
|
addShiftSettingPeriods(request: AddShiftSettingPeriods): Promise<ShiftSettingsPeriodDto[]>;
|
|
607
607
|
deleteShiftSettingPeriods(request: DeleteShiftSettingsPeriod): Promise<FileResponse>;
|
|
608
608
|
updateShiftSettingsPeriod(resourceExternalId: string, effectiveFrom: string, request: UpdateShiftSettingsPeriodRequest): Promise<ShiftSettingsPeriodDto>;
|
|
609
|
-
copyShiftSettingsPeriod(
|
|
609
|
+
copyShiftSettingsPeriod(sourceResourceExternalId: string, sourceEffectiveFrom: string, request: CopyShiftSettingsPeriodRequest): Promise<ShiftSettingsPeriodDto>;
|
|
610
610
|
migrateCapacityToSettings(): Promise<MigrationResultDto>;
|
|
611
611
|
}
|
|
612
612
|
export declare class KpiAdminResourceClient extends AuthorizedApiBase implements IKpiAdminResourceClient {
|
|
@@ -643,8 +643,8 @@ export declare class KpiAdminResourceClient extends AuthorizedApiBase implements
|
|
|
643
643
|
protected processDeleteShiftSettingPeriods(response: Response): Promise<FileResponse>;
|
|
644
644
|
updateShiftSettingsPeriod(resourceExternalId: string, effectiveFrom: string, request: UpdateShiftSettingsPeriodRequest): Promise<ShiftSettingsPeriodDto>;
|
|
645
645
|
protected processUpdateShiftSettingsPeriod(response: Response): Promise<ShiftSettingsPeriodDto>;
|
|
646
|
-
copyShiftSettingsPeriod(
|
|
647
|
-
protected processCopyShiftSettingsPeriod(response: Response): Promise<ShiftSettingsPeriodDto
|
|
646
|
+
copyShiftSettingsPeriod(sourceResourceExternalId: string, sourceEffectiveFrom: string, request: CopyShiftSettingsPeriodRequest): Promise<ShiftSettingsPeriodDto>;
|
|
647
|
+
protected processCopyShiftSettingsPeriod(response: Response): Promise<ShiftSettingsPeriodDto>;
|
|
648
648
|
migrateCapacityToSettings(): Promise<MigrationResultDto>;
|
|
649
649
|
protected processMigrateCapacityToSettings(response: Response): Promise<MigrationResultDto>;
|
|
650
650
|
}
|
|
@@ -1389,24 +1389,6 @@ export declare class MachinesClient extends AuthorizedApiBase implements IMachin
|
|
|
1389
1389
|
deleteMachine(id: number): Promise<void>;
|
|
1390
1390
|
protected processDeleteMachine(response: Response): Promise<void>;
|
|
1391
1391
|
}
|
|
1392
|
-
export interface IMachineDataClient {
|
|
1393
|
-
getLiveMachineData(assetId: number, externalIds: string[] | undefined): Promise<LiveMachineDataDto>;
|
|
1394
|
-
getTimeseriesGraph(assetId: number, externalIds: string[] | undefined, startTime: Date | undefined, endTime: Date | undefined): Promise<TimeseriesGraphDto>;
|
|
1395
|
-
exportTimeseriesGraph(assetId: number, request: ExportTimeseriesGraphRequest): Promise<DownloadDto>;
|
|
1396
|
-
}
|
|
1397
|
-
export declare class MachineDataClient extends AuthorizedApiBase implements IMachineDataClient {
|
|
1398
|
-
private http;
|
|
1399
|
-
private baseUrl;
|
|
1400
|
-
constructor(configuration: IApiClientConfig, baseUrl?: string, http?: {
|
|
1401
|
-
fetch(url: RequestInfo, init?: RequestInit): Promise<Response>;
|
|
1402
|
-
});
|
|
1403
|
-
getLiveMachineData(assetId: number, externalIds: string[] | undefined): Promise<LiveMachineDataDto>;
|
|
1404
|
-
protected processGetLiveMachineData(response: Response): Promise<LiveMachineDataDto>;
|
|
1405
|
-
getTimeseriesGraph(assetId: number, externalIds: string[] | undefined, startTime: Date | undefined, endTime: Date | undefined): Promise<TimeseriesGraphDto>;
|
|
1406
|
-
protected processGetTimeseriesGraph(response: Response): Promise<TimeseriesGraphDto>;
|
|
1407
|
-
exportTimeseriesGraph(assetId: number, request: ExportTimeseriesGraphRequest): Promise<DownloadDto>;
|
|
1408
|
-
protected processExportTimeseriesGraph(response: Response): Promise<DownloadDto>;
|
|
1409
|
-
}
|
|
1410
1392
|
export interface ILinksClient {
|
|
1411
1393
|
getAllLinks(scope: string | null | undefined): Promise<LinkDto[]>;
|
|
1412
1394
|
createLink(request: CreateLinkRequest): Promise<LinkDto>;
|
|
@@ -2413,24 +2395,6 @@ export declare class MesEngineeringChangeOrdersClient extends AuthorizedApiBase
|
|
|
2413
2395
|
getEngineeringChangeOrderDetails(partNumber: string | undefined): Promise<EngineeringChangeOrdersDto>;
|
|
2414
2396
|
protected processGetEngineeringChangeOrderDetails(response: Response): Promise<EngineeringChangeOrdersDto>;
|
|
2415
2397
|
}
|
|
2416
|
-
export interface IMesIndirectActivitiesClient {
|
|
2417
|
-
listIndirectActivities(): Promise<IndirectActivityDto[]>;
|
|
2418
|
-
getMyActiveIndirectActivity(): Promise<CurrentIndirectActivityDto>;
|
|
2419
|
-
startIndirectActivity(request: StartIndirectActivity): Promise<void>;
|
|
2420
|
-
}
|
|
2421
|
-
export declare class MesIndirectActivitiesClient extends AuthorizedApiBase implements IMesIndirectActivitiesClient {
|
|
2422
|
-
private http;
|
|
2423
|
-
private baseUrl;
|
|
2424
|
-
constructor(configuration: IApiClientConfig, baseUrl?: string, http?: {
|
|
2425
|
-
fetch(url: RequestInfo, init?: RequestInit): Promise<Response>;
|
|
2426
|
-
});
|
|
2427
|
-
listIndirectActivities(): Promise<IndirectActivityDto[]>;
|
|
2428
|
-
protected processListIndirectActivities(response: Response): Promise<IndirectActivityDto[]>;
|
|
2429
|
-
getMyActiveIndirectActivity(): Promise<CurrentIndirectActivityDto>;
|
|
2430
|
-
protected processGetMyActiveIndirectActivity(response: Response): Promise<CurrentIndirectActivityDto>;
|
|
2431
|
-
startIndirectActivity(request: StartIndirectActivity): Promise<void>;
|
|
2432
|
-
protected processStartIndirectActivity(response: Response): Promise<void>;
|
|
2433
|
-
}
|
|
2434
2398
|
export interface IMesLinksClient {
|
|
2435
2399
|
addMesLink(request: AddMesLink): Promise<void>;
|
|
2436
2400
|
listMesLinks(types: MesLinkTypeDto[] | null | undefined, workOrderId: string | null | undefined, operation: number | null | undefined): Promise<MesLinkDto[]>;
|
|
@@ -2470,42 +2434,41 @@ export declare class MesOrMoveClient extends AuthorizedApiBase implements IMesOr
|
|
|
2470
2434
|
getPrintableLabels(request: GeneratePrintableLabel): Promise<DownloadDto>;
|
|
2471
2435
|
protected processGetPrintableLabels(response: Response): Promise<DownloadDto>;
|
|
2472
2436
|
}
|
|
2473
|
-
export interface
|
|
2474
|
-
|
|
2475
|
-
|
|
2476
|
-
|
|
2477
|
-
|
|
2478
|
-
|
|
2479
|
-
|
|
2480
|
-
|
|
2481
|
-
|
|
2482
|
-
|
|
2483
|
-
|
|
2484
|
-
|
|
2485
|
-
deleteAttachment(id: string, attachmentId: number): Promise<FileResponse>;
|
|
2486
|
-
}
|
|
2487
|
-
export declare class MesProductionOrderAttachmentClient extends AuthorizedApiBase implements IMesProductionOrderAttachmentClient {
|
|
2437
|
+
export interface IMesPlannerClient {
|
|
2438
|
+
getPlan(resourceGroupId: string | undefined): Promise<PlannerPlanDto>;
|
|
2439
|
+
publish(resourceGroupId: string, request: PublishPlanRequest): Promise<PlannerPlanDto>;
|
|
2440
|
+
updateSequence(resourceGroupId: string, sequence: PlannerSequenceInput): Promise<PlannerPlanDto>;
|
|
2441
|
+
reset(resourceGroupId: string): Promise<PlannerPlanDto>;
|
|
2442
|
+
saveDraft(resourceGroupId: string, sequence: PlannerSequenceInput): Promise<PlannerPlanDto>;
|
|
2443
|
+
discardDraft(resourceGroupId: string): Promise<PlannerPlanDto>;
|
|
2444
|
+
getVersions(resourceGroupId: string): Promise<PlannerPlanEventDto[]>;
|
|
2445
|
+
getVersion(resourceGroupId: string, eventId: string): Promise<PlannerPlanDto>;
|
|
2446
|
+
setProgramStatus(command: SetProgramStatus): Promise<ProgramStatus>;
|
|
2447
|
+
}
|
|
2448
|
+
export declare class MesPlannerClient extends AuthorizedApiBase implements IMesPlannerClient {
|
|
2488
2449
|
private http;
|
|
2489
2450
|
private baseUrl;
|
|
2490
2451
|
constructor(configuration: IApiClientConfig, baseUrl?: string, http?: {
|
|
2491
2452
|
fetch(url: RequestInfo, init?: RequestInit): Promise<Response>;
|
|
2492
2453
|
});
|
|
2493
|
-
|
|
2494
|
-
|
|
2495
|
-
|
|
2496
|
-
|
|
2497
|
-
|
|
2498
|
-
|
|
2499
|
-
|
|
2500
|
-
|
|
2501
|
-
|
|
2502
|
-
protected
|
|
2503
|
-
|
|
2504
|
-
protected
|
|
2505
|
-
|
|
2506
|
-
protected
|
|
2507
|
-
|
|
2508
|
-
protected
|
|
2454
|
+
getPlan(resourceGroupId: string | undefined): Promise<PlannerPlanDto>;
|
|
2455
|
+
protected processGetPlan(response: Response): Promise<PlannerPlanDto>;
|
|
2456
|
+
publish(resourceGroupId: string, request: PublishPlanRequest): Promise<PlannerPlanDto>;
|
|
2457
|
+
protected processPublish(response: Response): Promise<PlannerPlanDto>;
|
|
2458
|
+
updateSequence(resourceGroupId: string, sequence: PlannerSequenceInput): Promise<PlannerPlanDto>;
|
|
2459
|
+
protected processUpdateSequence(response: Response): Promise<PlannerPlanDto>;
|
|
2460
|
+
reset(resourceGroupId: string): Promise<PlannerPlanDto>;
|
|
2461
|
+
protected processReset(response: Response): Promise<PlannerPlanDto>;
|
|
2462
|
+
saveDraft(resourceGroupId: string, sequence: PlannerSequenceInput): Promise<PlannerPlanDto>;
|
|
2463
|
+
protected processSaveDraft(response: Response): Promise<PlannerPlanDto>;
|
|
2464
|
+
discardDraft(resourceGroupId: string): Promise<PlannerPlanDto>;
|
|
2465
|
+
protected processDiscardDraft(response: Response): Promise<PlannerPlanDto>;
|
|
2466
|
+
getVersions(resourceGroupId: string): Promise<PlannerPlanEventDto[]>;
|
|
2467
|
+
protected processGetVersions(response: Response): Promise<PlannerPlanEventDto[]>;
|
|
2468
|
+
getVersion(resourceGroupId: string, eventId: string): Promise<PlannerPlanDto>;
|
|
2469
|
+
protected processGetVersion(response: Response): Promise<PlannerPlanDto>;
|
|
2470
|
+
setProgramStatus(command: SetProgramStatus): Promise<ProgramStatus>;
|
|
2471
|
+
protected processSetProgramStatus(response: Response): Promise<ProgramStatus>;
|
|
2509
2472
|
}
|
|
2510
2473
|
export interface IMesProductionOrderClient {
|
|
2511
2474
|
getProductionOrder(id: string): Promise<ProductionOrderDto>;
|
|
@@ -2704,7 +2667,7 @@ export declare class InspectMatchCertificateTypesClient extends AuthorizedApiBas
|
|
|
2704
2667
|
}
|
|
2705
2668
|
export interface IInspectMatchMaterialChecksAdminClient {
|
|
2706
2669
|
updateMaterialCheckOverrides(id: string, request: ImaOverrideMaterialCheckRequestDto): Promise<ImaMaterialCheckDto>;
|
|
2707
|
-
updateMaterialCheckStatus(id: string, status:
|
|
2670
|
+
updateMaterialCheckStatus(id: string, status: ImaMaterialCheckStatus | undefined): Promise<ImaMaterialCheckDto>;
|
|
2708
2671
|
updateMaterialCheckMetadata(id: string, metadataRequest: ImaUpdateMaterialCheckMetadataRequestDto): Promise<ImaMaterialCheckDto>;
|
|
2709
2672
|
deleteMaterialCheck(id: string): Promise<void>;
|
|
2710
2673
|
}
|
|
@@ -2716,7 +2679,7 @@ export declare class InspectMatchMaterialChecksAdminClient extends AuthorizedApi
|
|
|
2716
2679
|
});
|
|
2717
2680
|
updateMaterialCheckOverrides(id: string, request: ImaOverrideMaterialCheckRequestDto): Promise<ImaMaterialCheckDto>;
|
|
2718
2681
|
protected processUpdateMaterialCheckOverrides(response: Response): Promise<ImaMaterialCheckDto>;
|
|
2719
|
-
updateMaterialCheckStatus(id: string, status:
|
|
2682
|
+
updateMaterialCheckStatus(id: string, status: ImaMaterialCheckStatus | undefined): Promise<ImaMaterialCheckDto>;
|
|
2720
2683
|
protected processUpdateMaterialCheckStatus(response: Response): Promise<ImaMaterialCheckDto>;
|
|
2721
2684
|
updateMaterialCheckMetadata(id: string, metadataRequest: ImaUpdateMaterialCheckMetadataRequestDto): Promise<ImaMaterialCheckDto>;
|
|
2722
2685
|
protected processUpdateMaterialCheckMetadata(response: Response): Promise<ImaMaterialCheckDto>;
|
|
@@ -2819,45 +2782,6 @@ export declare class InspectMatchSpecificationsClient extends AuthorizedApiBase
|
|
|
2819
2782
|
listSpecifications(): Promise<ImaSpecificationLiteDto[]>;
|
|
2820
2783
|
protected processListSpecifications(response: Response): Promise<ImaSpecificationLiteDto[]>;
|
|
2821
2784
|
}
|
|
2822
|
-
export interface IInspectSchemaCreatorClient {
|
|
2823
|
-
getSchemaCreatorState(id: string): Promise<SchemaCreatorStateDto>;
|
|
2824
|
-
/**
|
|
2825
|
-
* Creates the initial creator state for a schema version. Returns 409 if
|
|
2826
|
-
state already exists; the caller should re-fetch it instead of writing.
|
|
2827
|
-
*/
|
|
2828
|
-
createSchemaCreatorState(id: string, state: SchemaCreatorStateDto): Promise<SchemaCreatorStateDto>;
|
|
2829
|
-
updateSchemaCreatorState(id: string, state: SchemaCreatorStateDto): Promise<SchemaCreatorStateDto>;
|
|
2830
|
-
/**
|
|
2831
|
-
* Starts an async snip resolve; the result is delivered through the
|
|
2832
|
-
SchemaCreatorSnipResolved SignalR notification.
|
|
2833
|
-
* @param image (optional)
|
|
2834
|
-
*/
|
|
2835
|
-
resolveSchemaCreatorSnip(id: string, elementId: string, image: FileParameter | null | undefined): Promise<FileResponse>;
|
|
2836
|
-
}
|
|
2837
|
-
export declare class InspectSchemaCreatorClient extends AuthorizedApiBase implements IInspectSchemaCreatorClient {
|
|
2838
|
-
private http;
|
|
2839
|
-
private baseUrl;
|
|
2840
|
-
constructor(configuration: IApiClientConfig, baseUrl?: string, http?: {
|
|
2841
|
-
fetch(url: RequestInfo, init?: RequestInit): Promise<Response>;
|
|
2842
|
-
});
|
|
2843
|
-
getSchemaCreatorState(id: string): Promise<SchemaCreatorStateDto>;
|
|
2844
|
-
protected processGetSchemaCreatorState(response: Response): Promise<SchemaCreatorStateDto>;
|
|
2845
|
-
/**
|
|
2846
|
-
* Creates the initial creator state for a schema version. Returns 409 if
|
|
2847
|
-
state already exists; the caller should re-fetch it instead of writing.
|
|
2848
|
-
*/
|
|
2849
|
-
createSchemaCreatorState(id: string, state: SchemaCreatorStateDto): Promise<SchemaCreatorStateDto>;
|
|
2850
|
-
protected processCreateSchemaCreatorState(response: Response): Promise<SchemaCreatorStateDto>;
|
|
2851
|
-
updateSchemaCreatorState(id: string, state: SchemaCreatorStateDto): Promise<SchemaCreatorStateDto>;
|
|
2852
|
-
protected processUpdateSchemaCreatorState(response: Response): Promise<SchemaCreatorStateDto>;
|
|
2853
|
-
/**
|
|
2854
|
-
* Starts an async snip resolve; the result is delivered through the
|
|
2855
|
-
SchemaCreatorSnipResolved SignalR notification.
|
|
2856
|
-
* @param image (optional)
|
|
2857
|
-
*/
|
|
2858
|
-
resolveSchemaCreatorSnip(id: string, elementId: string, image: FileParameter | null | undefined): Promise<FileResponse>;
|
|
2859
|
-
protected processResolveSchemaCreatorSnip(response: Response): Promise<FileResponse>;
|
|
2860
|
-
}
|
|
2861
2785
|
export interface IMeasurementFormSchemasAdminClient {
|
|
2862
2786
|
getArchivedMeasurementFormSchema(id: string): Promise<MeasurementFormSchemaDto>;
|
|
2863
2787
|
createMeasurementForm(request: CreateMeasurementFormSchema): Promise<MeasurementFormDto>;
|
|
@@ -4289,7 +4213,7 @@ export interface UpdateCalendarSettingsCommand {
|
|
|
4289
4213
|
}
|
|
4290
4214
|
export interface ShiftPlansDto {
|
|
4291
4215
|
active: ShiftPlanDto[];
|
|
4292
|
-
archived:
|
|
4216
|
+
archived: ShiftPlanDto[];
|
|
4293
4217
|
}
|
|
4294
4218
|
export interface ShiftPlanDto {
|
|
4295
4219
|
id: string;
|
|
@@ -4301,27 +4225,6 @@ export interface ShiftPlanDto {
|
|
|
4301
4225
|
updatedBy?: string | null;
|
|
4302
4226
|
isArchived?: boolean;
|
|
4303
4227
|
}
|
|
4304
|
-
export interface ArchivedShiftPlanDto extends ShiftPlanDto {
|
|
4305
|
-
usage: ShiftSettingPeriodsDto[];
|
|
4306
|
-
}
|
|
4307
|
-
export interface ShiftSettingPeriodsDto {
|
|
4308
|
-
resourceExternalId: string;
|
|
4309
|
-
resourceName: string;
|
|
4310
|
-
resourceDescription?: string | null;
|
|
4311
|
-
periods: ShiftSettingsPeriodDto[];
|
|
4312
|
-
}
|
|
4313
|
-
export interface ShiftSettingsPeriodDto {
|
|
4314
|
-
resourceExternalId: string;
|
|
4315
|
-
shiftPlanId: string;
|
|
4316
|
-
shiftPlanName: string;
|
|
4317
|
-
effectiveFrom: string;
|
|
4318
|
-
effectiveTo?: string | null;
|
|
4319
|
-
targetPercent: number;
|
|
4320
|
-
comment?: string | null;
|
|
4321
|
-
hoursPerWeekday: {
|
|
4322
|
-
[key in DayOfWeek]?: number;
|
|
4323
|
-
};
|
|
4324
|
-
}
|
|
4325
4228
|
export interface CreateShiftPlan {
|
|
4326
4229
|
name: string;
|
|
4327
4230
|
hoursPerWeekday: {
|
|
@@ -4343,6 +4246,23 @@ export interface ShiftSettingsPeriodGroupDto {
|
|
|
4343
4246
|
resourceGroupName: string;
|
|
4344
4247
|
resources: ShiftSettingPeriodsDto[];
|
|
4345
4248
|
}
|
|
4249
|
+
export interface ShiftSettingPeriodsDto {
|
|
4250
|
+
resourceExternalId: string;
|
|
4251
|
+
resourceName: string;
|
|
4252
|
+
periods: ShiftSettingsPeriodDto[];
|
|
4253
|
+
}
|
|
4254
|
+
export interface ShiftSettingsPeriodDto {
|
|
4255
|
+
resourceExternalId: string;
|
|
4256
|
+
shiftPlanId: string;
|
|
4257
|
+
shiftPlanName: string;
|
|
4258
|
+
effectiveFrom: string;
|
|
4259
|
+
effectiveTo?: string | null;
|
|
4260
|
+
targetPercent: number;
|
|
4261
|
+
comment?: string | null;
|
|
4262
|
+
hoursPerWeekday: {
|
|
4263
|
+
[key in DayOfWeek]?: number;
|
|
4264
|
+
};
|
|
4265
|
+
}
|
|
4346
4266
|
export interface AddShiftSettingPeriods {
|
|
4347
4267
|
resourceExternalIds: string[];
|
|
4348
4268
|
shiftPlanId: string;
|
|
@@ -4364,11 +4284,8 @@ export interface PeriodKey {
|
|
|
4364
4284
|
effectiveFrom: string;
|
|
4365
4285
|
}
|
|
4366
4286
|
export interface CopyShiftSettingsPeriodRequest {
|
|
4367
|
-
|
|
4368
|
-
|
|
4369
|
-
export interface SourceShiftSettingPeriod {
|
|
4370
|
-
sourceResourceExternalId: string;
|
|
4371
|
-
sourceEffectiveFrom: string;
|
|
4287
|
+
targetResourceExternalId: string;
|
|
4288
|
+
effectiveFrom: string;
|
|
4372
4289
|
}
|
|
4373
4290
|
export interface MigrationResultDto {
|
|
4374
4291
|
created?: number;
|
|
@@ -5696,40 +5613,6 @@ export interface CrossCompanyUtilizationSummaryDto {
|
|
|
5696
5613
|
crossCompany: FactoryUtilizationDto;
|
|
5697
5614
|
companies: MachineGroupUtilizationDto[];
|
|
5698
5615
|
}
|
|
5699
|
-
export interface LiveMachineDataDto {
|
|
5700
|
-
assetId?: number;
|
|
5701
|
-
dataPoints?: LiveMachineDataPointDto[];
|
|
5702
|
-
}
|
|
5703
|
-
export interface LiveMachineDataPointDto {
|
|
5704
|
-
externalId?: string;
|
|
5705
|
-
timestamp?: number | null;
|
|
5706
|
-
numericValue?: number | null;
|
|
5707
|
-
stringValue?: string | null;
|
|
5708
|
-
}
|
|
5709
|
-
export interface TimeseriesGraphDto {
|
|
5710
|
-
assetId?: number;
|
|
5711
|
-
series?: TimeseriesGraphSeriesDto[];
|
|
5712
|
-
}
|
|
5713
|
-
export interface TimeseriesGraphSeriesDto {
|
|
5714
|
-
externalId?: string;
|
|
5715
|
-
isString?: boolean;
|
|
5716
|
-
dataPoints?: TimeseriesGraphDataPointDto[];
|
|
5717
|
-
}
|
|
5718
|
-
export interface TimeseriesGraphDataPointDto {
|
|
5719
|
-
timestamp?: number;
|
|
5720
|
-
numericValue?: number | null;
|
|
5721
|
-
stringValue?: string | null;
|
|
5722
|
-
}
|
|
5723
|
-
export interface ExportTimeseriesGraphRequest {
|
|
5724
|
-
series?: TimeseriesExportSeries[];
|
|
5725
|
-
startTime?: Date;
|
|
5726
|
-
endTime?: Date;
|
|
5727
|
-
}
|
|
5728
|
-
export interface TimeseriesExportSeries {
|
|
5729
|
-
externalId?: string;
|
|
5730
|
-
displayName?: string | null;
|
|
5731
|
-
unit?: string | null;
|
|
5732
|
-
}
|
|
5733
5616
|
export interface LinkDto {
|
|
5734
5617
|
id: string;
|
|
5735
5618
|
uri: string;
|
|
@@ -5773,7 +5656,7 @@ export interface ImportDocument {
|
|
|
5773
5656
|
lots: string[];
|
|
5774
5657
|
frontPageDocumentId?: string | null;
|
|
5775
5658
|
documentSource: DocumentSource;
|
|
5776
|
-
uploadKey
|
|
5659
|
+
uploadKey: string;
|
|
5777
5660
|
created?: Date | null;
|
|
5778
5661
|
createdBy?: string | null;
|
|
5779
5662
|
createdById?: string | null;
|
|
@@ -5805,8 +5688,7 @@ export interface ImportDocumentRevisionDto {
|
|
|
5805
5688
|
approvals: DocumentRevisionApprovalDto[];
|
|
5806
5689
|
}
|
|
5807
5690
|
export interface ImportDocumentRevisionContentDto {
|
|
5808
|
-
uploadFilename
|
|
5809
|
-
sourceUrl?: string | null;
|
|
5691
|
+
uploadFilename: string;
|
|
5810
5692
|
originalFilename: string;
|
|
5811
5693
|
extension: string;
|
|
5812
5694
|
}
|
|
@@ -7333,19 +7215,6 @@ export interface EngineeringChangeOrdersDto {
|
|
|
7333
7215
|
mostRecentEngineeringChangeOrder?: Date | null;
|
|
7334
7216
|
engineeringChangeOrders?: EngineeringChangeOrderDto[];
|
|
7335
7217
|
}
|
|
7336
|
-
export interface IndirectActivityDto {
|
|
7337
|
-
activityId: string;
|
|
7338
|
-
name: string;
|
|
7339
|
-
companyId: string;
|
|
7340
|
-
}
|
|
7341
|
-
export interface CurrentIndirectActivityDto {
|
|
7342
|
-
activityId?: string | null;
|
|
7343
|
-
personnelNumber?: string | null;
|
|
7344
|
-
startTime?: Date | null;
|
|
7345
|
-
}
|
|
7346
|
-
export interface StartIndirectActivity {
|
|
7347
|
-
activityId: string;
|
|
7348
|
-
}
|
|
7349
7218
|
export interface AddMesLink {
|
|
7350
7219
|
uri: string;
|
|
7351
7220
|
name: string;
|
|
@@ -7386,17 +7255,72 @@ export interface LabelId {
|
|
|
7386
7255
|
parcelId: string;
|
|
7387
7256
|
trackingId?: string | null;
|
|
7388
7257
|
}
|
|
7389
|
-
export
|
|
7390
|
-
|
|
7391
|
-
|
|
7392
|
-
|
|
7393
|
-
|
|
7394
|
-
|
|
7395
|
-
|
|
7396
|
-
|
|
7397
|
-
|
|
7398
|
-
|
|
7399
|
-
|
|
7258
|
+
export interface PlannerPlanDto {
|
|
7259
|
+
resourceGroupId: string;
|
|
7260
|
+
sequence: PlannerOperationDto[];
|
|
7261
|
+
lockedCount: number;
|
|
7262
|
+
planSavedAt?: Date | null;
|
|
7263
|
+
isDraft: boolean;
|
|
7264
|
+
publishedETag?: string | null;
|
|
7265
|
+
}
|
|
7266
|
+
export interface PlannerOperationDto {
|
|
7267
|
+
id: string;
|
|
7268
|
+
productionOrderNumber: string;
|
|
7269
|
+
operation: number;
|
|
7270
|
+
operationName: string;
|
|
7271
|
+
plannedStart: Date;
|
|
7272
|
+
plannedEnd?: Date | null;
|
|
7273
|
+
status: OperationStatusDto;
|
|
7274
|
+
resourceId: string;
|
|
7275
|
+
resourceName: string;
|
|
7276
|
+
resourceDepartmentNumber?: string | null;
|
|
7277
|
+
resourceDepartmentName?: string | null;
|
|
7278
|
+
partNumber: string;
|
|
7279
|
+
partName?: string | null;
|
|
7280
|
+
partMaterial?: string | null;
|
|
7281
|
+
quantity: number;
|
|
7282
|
+
producedQuantity: number;
|
|
7283
|
+
totalPlannedHours?: number;
|
|
7284
|
+
totalUsedHours?: number;
|
|
7285
|
+
customerName?: string | null;
|
|
7286
|
+
project?: WorkOrderProjectDto | null;
|
|
7287
|
+
sequenceNumber: number;
|
|
7288
|
+
isManuallyLocked: boolean;
|
|
7289
|
+
weekGroup: string;
|
|
7290
|
+
programStatus?: ProgramStatus | null;
|
|
7291
|
+
}
|
|
7292
|
+
export type ProgramStatus = "Blank" | "NotOk" | "Ok";
|
|
7293
|
+
export interface PublishPlanRequest {
|
|
7294
|
+
/** ETag of the published plan the caller last read, used for optimistic
|
|
7295
|
+
concurrency. Null if the caller never observed a published plan. */
|
|
7296
|
+
publishedETag?: string | null;
|
|
7297
|
+
comment?: string | null;
|
|
7298
|
+
/** The caller's unsaved working sequence to publish. When null, the
|
|
7299
|
+
persisted active plan (draft, else published) is published instead. */
|
|
7300
|
+
sequence?: PlannerSequenceInput | null;
|
|
7301
|
+
}
|
|
7302
|
+
export interface PlannerSequenceInput {
|
|
7303
|
+
orderedOperationKeys: string[];
|
|
7304
|
+
lockedCount: number;
|
|
7305
|
+
weekGroups?: {
|
|
7306
|
+
[key: string]: string;
|
|
7307
|
+
} | null;
|
|
7308
|
+
}
|
|
7309
|
+
export interface PlannerPlanEventDto {
|
|
7310
|
+
id: string;
|
|
7311
|
+
eventType: PlannerEventType;
|
|
7312
|
+
occurredAt: Date;
|
|
7313
|
+
by?: string | null;
|
|
7314
|
+
comment?: string | null;
|
|
7315
|
+
operationCount: number;
|
|
7316
|
+
lockedCount: number;
|
|
7317
|
+
}
|
|
7318
|
+
export type PlannerEventType = "Published" | "DraftSaved" | "ResetToErp" | "AutoRollover";
|
|
7319
|
+
export interface SetProgramStatus {
|
|
7320
|
+
workOrderId?: string;
|
|
7321
|
+
operationNumber?: number;
|
|
7322
|
+
status?: ProgramStatus;
|
|
7323
|
+
resourceId?: string;
|
|
7400
7324
|
}
|
|
7401
7325
|
export interface ProductionOrderDto {
|
|
7402
7326
|
id: string;
|
|
@@ -7456,6 +7380,15 @@ export interface ProductionOrderOperationDto {
|
|
|
7456
7380
|
productionStatus: OperationStatusDto;
|
|
7457
7381
|
setupStatus?: OperationStatusDto | null;
|
|
7458
7382
|
}
|
|
7383
|
+
export interface WorkOrderAttachmentDto {
|
|
7384
|
+
createdBy?: UserDto | null;
|
|
7385
|
+
created?: Date | null;
|
|
7386
|
+
modifiedBy?: UserDto | null;
|
|
7387
|
+
modified?: Date | null;
|
|
7388
|
+
name?: string | null;
|
|
7389
|
+
notes?: string | null;
|
|
7390
|
+
attachmentType?: string | null;
|
|
7391
|
+
}
|
|
7459
7392
|
export interface DrawingDto {
|
|
7460
7393
|
drawingNumber: string;
|
|
7461
7394
|
revision: string;
|
|
@@ -7661,6 +7594,7 @@ export interface ProductionScheduleOperationDto {
|
|
|
7661
7594
|
materialPickStatus: MaterialPickStatus;
|
|
7662
7595
|
productionStatus: OperationStatusDto;
|
|
7663
7596
|
setupStatus?: OperationStatusDto | null;
|
|
7597
|
+
programStatus?: ProgramStatus | null;
|
|
7664
7598
|
}
|
|
7665
7599
|
export interface SurroundingOperationDto {
|
|
7666
7600
|
id: string;
|
|
@@ -7959,31 +7893,34 @@ export interface WeldingIotConfigDto {
|
|
|
7959
7893
|
}
|
|
7960
7894
|
export interface CreateWeldingIotConfig {
|
|
7961
7895
|
}
|
|
7962
|
-
export interface
|
|
7896
|
+
export interface ImaCdfEntityReadBase {
|
|
7897
|
+
}
|
|
7898
|
+
export interface ImaCertificateTypeDto extends ImaCdfEntityReadBase {
|
|
7899
|
+
companyId: string;
|
|
7963
7900
|
certificateTypeId: string;
|
|
7964
7901
|
version: number;
|
|
7965
7902
|
allVersions: ImaCertificateTypeVersionDto[];
|
|
7966
7903
|
name: string;
|
|
7967
7904
|
revision: string;
|
|
7968
|
-
status:
|
|
7905
|
+
status: ImaCertificateTypeStatus;
|
|
7969
7906
|
description?: string | null;
|
|
7970
7907
|
isStandardCertificateType: boolean;
|
|
7971
7908
|
created: Date;
|
|
7972
7909
|
createdBy: string;
|
|
7973
7910
|
createdById: string;
|
|
7974
|
-
createdByName
|
|
7911
|
+
createdByName: string;
|
|
7975
7912
|
updatedBy: string;
|
|
7976
7913
|
updatedById: string;
|
|
7977
|
-
updatedByName
|
|
7914
|
+
updatedByName: string;
|
|
7978
7915
|
updated: Date;
|
|
7979
7916
|
isDeleted: boolean;
|
|
7980
7917
|
requirements: ImaCertificateTypeRequirementsDto;
|
|
7981
7918
|
}
|
|
7982
7919
|
export interface ImaCertificateTypeVersionDto {
|
|
7983
7920
|
version?: number;
|
|
7984
|
-
status?:
|
|
7921
|
+
status?: ImaCertificateTypeStatus;
|
|
7985
7922
|
}
|
|
7986
|
-
export type
|
|
7923
|
+
export type ImaCertificateTypeStatus = "Draft" | "Released" | "Expired" | "Rejected" | "NotSet";
|
|
7987
7924
|
export interface ImaCertificateTypeRequirementsDto {
|
|
7988
7925
|
manufacturer: ImaCertificateTypeManufacturerRequirementsDto;
|
|
7989
7926
|
signature: ImaCertificateTypeSignatureRequirementsDto;
|
|
@@ -7994,8 +7931,6 @@ export interface ImaCertificateTypeRequirementsDto {
|
|
|
7994
7931
|
testResults: ImaCertificateTypeTestResultsRequirementsDto;
|
|
7995
7932
|
documentTypes: ImaCertificateTypeDocumentTypesRequirementsDto;
|
|
7996
7933
|
}
|
|
7997
|
-
export interface ImaCdfEntityReadBase {
|
|
7998
|
-
}
|
|
7999
7934
|
export interface ImaCertificateTypeManufacturerRequirementsDto extends ImaCdfEntityReadBase {
|
|
8000
7935
|
manufacturer?: boolean;
|
|
8001
7936
|
address?: boolean;
|
|
@@ -8063,7 +7998,7 @@ export interface ImaCreateOrCopyCertificateTypeRequestDto {
|
|
|
8063
7998
|
export interface ImaUpdateImaCertificateTypeRequestDto {
|
|
8064
7999
|
name?: string | null;
|
|
8065
8000
|
revision?: string | null;
|
|
8066
|
-
status?:
|
|
8001
|
+
status?: ImaCertificateTypeStatus | null;
|
|
8067
8002
|
description?: string | null;
|
|
8068
8003
|
requirements?: ImaCertificateTypeRequirementsUpdateDto | null;
|
|
8069
8004
|
}
|
|
@@ -8136,21 +8071,21 @@ export interface ImaCertificateTypeDocumentTypesRequirementsUpdateDto {
|
|
|
8136
8071
|
microExaminationReport?: boolean | null;
|
|
8137
8072
|
radiologicalReport?: boolean | null;
|
|
8138
8073
|
}
|
|
8139
|
-
export interface ImaCertificateTypeLiteDto {
|
|
8074
|
+
export interface ImaCertificateTypeLiteDto extends ImaCdfEntityReadBase {
|
|
8140
8075
|
certificateTypeId: string;
|
|
8141
8076
|
version: number;
|
|
8142
8077
|
name: string;
|
|
8143
8078
|
revision: string;
|
|
8144
|
-
status:
|
|
8079
|
+
status: ImaCertificateTypeStatus;
|
|
8145
8080
|
description?: string | null;
|
|
8146
8081
|
isStandardCertificateType: boolean;
|
|
8147
8082
|
created: Date;
|
|
8148
8083
|
createdBy: string;
|
|
8149
8084
|
createdById: string;
|
|
8150
|
-
createdByName
|
|
8085
|
+
createdByName: string;
|
|
8151
8086
|
updatedBy: string;
|
|
8152
8087
|
updatedById: string;
|
|
8153
|
-
updatedByName
|
|
8088
|
+
updatedByName: string;
|
|
8154
8089
|
updated: Date;
|
|
8155
8090
|
isDeleted: boolean;
|
|
8156
8091
|
}
|
|
@@ -8166,29 +8101,27 @@ export interface ImaMaterialCheckDto {
|
|
|
8166
8101
|
certificateTypeVersion?: number | null;
|
|
8167
8102
|
certificateTypeName?: string | null;
|
|
8168
8103
|
certificateTypeRevision?: string | null;
|
|
8169
|
-
certificateTypeStatus: ImaCertificateTypeStatusDto;
|
|
8170
8104
|
specificationId: string;
|
|
8171
8105
|
specificationVersion: number;
|
|
8172
8106
|
specificationName: string;
|
|
8173
|
-
specificationRevision
|
|
8174
|
-
specificationStatus:
|
|
8107
|
+
specificationRevision: string;
|
|
8108
|
+
specificationStatus: ImaSpecificationStatus;
|
|
8109
|
+
certificateTypeStatus: ImaCertificateTypeStatus;
|
|
8175
8110
|
purchaseOrder?: string | null;
|
|
8176
8111
|
purchaseOrderLine?: number | null;
|
|
8177
8112
|
purchaseOrderVendorBatches?: string[] | null;
|
|
8178
8113
|
purchaseOrderPartName?: string | null;
|
|
8179
8114
|
purchaseOrderPartNumber?: string | null;
|
|
8180
|
-
purchaseOrderPartRevision?: string | null;
|
|
8181
8115
|
purchaseOrderDrawing?: string | null;
|
|
8182
|
-
purchaseOrderDrawingRevision?: string | null;
|
|
8183
8116
|
heatNumber?: string | null;
|
|
8184
|
-
status:
|
|
8117
|
+
status: ImaMaterialCheckStatus;
|
|
8185
8118
|
created: Date;
|
|
8186
8119
|
createdBy: string;
|
|
8187
8120
|
createdById: string;
|
|
8188
|
-
createdByName
|
|
8121
|
+
createdByName: string;
|
|
8189
8122
|
updatedBy: string;
|
|
8190
8123
|
updatedById: string;
|
|
8191
|
-
updatedByName
|
|
8124
|
+
updatedByName: string;
|
|
8192
8125
|
isDeleted: boolean;
|
|
8193
8126
|
reportCreatedBy?: string | null;
|
|
8194
8127
|
reportCreatedById?: string | null;
|
|
@@ -8197,8 +8130,8 @@ export interface ImaMaterialCheckDto {
|
|
|
8197
8130
|
certificateTypeResults: ImaCertificateTypeResultsDto;
|
|
8198
8131
|
specificationResults: ImaSpecificationResultsDto;
|
|
8199
8132
|
}
|
|
8200
|
-
export type
|
|
8201
|
-
export type
|
|
8133
|
+
export type ImaSpecificationStatus = "Draft" | "Released" | "Expired" | "Rejected" | "NotSet";
|
|
8134
|
+
export type ImaMaterialCheckStatus = "Processing" | "Draft" | "Approved" | "Rejected" | "Failed" | "NotSet";
|
|
8202
8135
|
export interface ImaCertificateTypeResultsDto extends ImaCdfEntityReadBase {
|
|
8203
8136
|
manufacturer: ImaCertificateTypeManufacturerResultsDto;
|
|
8204
8137
|
signature: ImaCertificateTypeSignatureResultsDto;
|
|
@@ -8305,10 +8238,10 @@ export interface ImaSpecificationResultLineDto extends ImaCdfEntityReadBase {
|
|
|
8305
8238
|
specificationMin?: number | null;
|
|
8306
8239
|
specificationMax?: number | null;
|
|
8307
8240
|
readValue?: string | null;
|
|
8308
|
-
status:
|
|
8241
|
+
status: ImaSpecificationResultLineStatus;
|
|
8309
8242
|
override?: ImaResultLineOverrideDto | null;
|
|
8310
8243
|
}
|
|
8311
|
-
export type
|
|
8244
|
+
export type ImaSpecificationResultLineStatus = "NotFound" | "NotOk" | "Ok" | "NotSet";
|
|
8312
8245
|
export interface ImaSpecificationMechanicalResultsDto extends ImaCdfEntityReadBase {
|
|
8313
8246
|
yieldStrength?: ImaSpecificationResultLineDto | null;
|
|
8314
8247
|
tensileStrength?: ImaSpecificationResultLineDto | null;
|
|
@@ -8324,7 +8257,7 @@ export interface ImaSpecificationFerriteResultLineDto extends ImaCdfEntityReadBa
|
|
|
8324
8257
|
specificationMin?: number | null;
|
|
8325
8258
|
specificationMax?: number | null;
|
|
8326
8259
|
readValue?: string | null;
|
|
8327
|
-
status:
|
|
8260
|
+
status: ImaSpecificationResultLineStatus;
|
|
8328
8261
|
override?: ImaResultLineOverrideDto | null;
|
|
8329
8262
|
measurementMethod?: string | null;
|
|
8330
8263
|
}
|
|
@@ -8472,29 +8405,27 @@ export interface ImaMaterialCheckLiteDto {
|
|
|
8472
8405
|
certificateTypeVersion?: number | null;
|
|
8473
8406
|
certificateTypeName?: string | null;
|
|
8474
8407
|
certificateTypeRevision?: string | null;
|
|
8475
|
-
certificateTypeStatus: ImaCertificateTypeStatusDto;
|
|
8476
8408
|
specificationId: string;
|
|
8477
8409
|
specificationVersion: number;
|
|
8478
8410
|
specificationName: string;
|
|
8479
|
-
specificationRevision
|
|
8480
|
-
specificationStatus: ImaSpecificationStatusDto;
|
|
8411
|
+
specificationRevision: string;
|
|
8481
8412
|
purchaseOrder?: string | null;
|
|
8482
8413
|
purchaseOrderLine?: number | null;
|
|
8483
8414
|
purchaseOrderVendorBatches?: string[] | null;
|
|
8484
8415
|
purchaseOrderPartName?: string | null;
|
|
8485
8416
|
purchaseOrderPartNumber?: string | null;
|
|
8486
|
-
purchaseOrderPartRevision?: string | null;
|
|
8487
8417
|
purchaseOrderDrawing?: string | null;
|
|
8488
|
-
purchaseOrderDrawingRevision?: string | null;
|
|
8489
8418
|
heatNumber?: string | null;
|
|
8490
|
-
status:
|
|
8419
|
+
status: ImaMaterialCheckStatus;
|
|
8420
|
+
specificationStatus: ImaSpecificationStatus;
|
|
8421
|
+
certificateTypeStatus: ImaCertificateTypeStatus;
|
|
8491
8422
|
created: Date;
|
|
8492
8423
|
createdBy: string;
|
|
8493
8424
|
createdById: string;
|
|
8494
|
-
createdByName
|
|
8425
|
+
createdByName: string;
|
|
8495
8426
|
updatedBy: string;
|
|
8496
8427
|
updatedById: string;
|
|
8497
|
-
updatedByName
|
|
8428
|
+
updatedByName: string;
|
|
8498
8429
|
isDeleted?: boolean;
|
|
8499
8430
|
reportCreatedBy?: string | null;
|
|
8500
8431
|
reportCreatedById?: string | null;
|
|
@@ -8520,15 +8451,15 @@ export interface ImaMaterialChecksPageRequestDto {
|
|
|
8520
8451
|
purchaseOrderDrawingFilter?: string | null;
|
|
8521
8452
|
dateFromFilter?: Date | null;
|
|
8522
8453
|
dateToFilter?: Date | null;
|
|
8523
|
-
statusFilter?:
|
|
8454
|
+
statusFilter?: ImaMaterialCheckStatus[] | null;
|
|
8524
8455
|
continuationToken?: string | null;
|
|
8525
8456
|
}
|
|
8526
8457
|
export interface ImaMaterialChecksPageOrderRequestDto {
|
|
8527
|
-
column?:
|
|
8528
|
-
direction?:
|
|
8458
|
+
column?: ImaMaterialChecksOrderByColumn;
|
|
8459
|
+
direction?: ImaOrderDirection;
|
|
8529
8460
|
}
|
|
8530
|
-
export type
|
|
8531
|
-
export type
|
|
8461
|
+
export type ImaMaterialChecksOrderByColumn = "FileName" | "PurchaseOrder" | "Line" | "VendorBatch" | "Part" | "Drawing" | "Heat" | "CertificateType" | "Specification" | "GeneratedReport" | "Project" | "CustomerOrder" | "WorkOrder" | "Date" | "Status";
|
|
8462
|
+
export type ImaOrderDirection = "Asc" | "Desc";
|
|
8532
8463
|
export interface ProcessMaterialCertificate {
|
|
8533
8464
|
files: UploadFileCdfDto[];
|
|
8534
8465
|
specificationId: string;
|
|
@@ -8633,7 +8564,7 @@ export interface ImaUpdateMatchSettingsColumnsDto {
|
|
|
8633
8564
|
date: boolean;
|
|
8634
8565
|
status: boolean;
|
|
8635
8566
|
}
|
|
8636
|
-
export interface ImaSpecificationDto {
|
|
8567
|
+
export interface ImaSpecificationDto extends ImaCdfEntityReadBase {
|
|
8637
8568
|
specificationId: string;
|
|
8638
8569
|
version: number;
|
|
8639
8570
|
allVersions: ImaSpecificationVersionDto[];
|
|
@@ -8641,16 +8572,16 @@ export interface ImaSpecificationDto {
|
|
|
8641
8572
|
number: string;
|
|
8642
8573
|
revision: string;
|
|
8643
8574
|
date: Date;
|
|
8644
|
-
status:
|
|
8575
|
+
status: ImaSpecificationStatus;
|
|
8645
8576
|
summary?: string | null;
|
|
8646
8577
|
relatedStandards: string[];
|
|
8647
8578
|
created: Date;
|
|
8648
8579
|
createdBy: string;
|
|
8649
8580
|
createdById: string;
|
|
8650
|
-
createdByName
|
|
8581
|
+
createdByName: string;
|
|
8651
8582
|
updatedBy: string;
|
|
8652
8583
|
updatedById: string;
|
|
8653
|
-
updatedByName
|
|
8584
|
+
updatedByName: string;
|
|
8654
8585
|
updated: Date;
|
|
8655
8586
|
isDeleted: boolean;
|
|
8656
8587
|
chemistrySpecification: ImaChemistrySpecificationDto;
|
|
@@ -8660,9 +8591,9 @@ export interface ImaSpecificationDto {
|
|
|
8660
8591
|
}
|
|
8661
8592
|
export interface ImaSpecificationVersionDto {
|
|
8662
8593
|
version?: number;
|
|
8663
|
-
status?:
|
|
8594
|
+
status?: ImaSpecificationStatus;
|
|
8664
8595
|
}
|
|
8665
|
-
export interface ImaChemistrySpecificationDto {
|
|
8596
|
+
export interface ImaChemistrySpecificationDto extends ImaCdfEntityReadBase {
|
|
8666
8597
|
carbon?: ImaSpecificationLineDto | null;
|
|
8667
8598
|
manganese?: ImaSpecificationLineDto | null;
|
|
8668
8599
|
silicon?: ImaSpecificationLineDto | null;
|
|
@@ -8680,7 +8611,7 @@ export interface ImaSpecificationLineDto extends ImaCdfEntityReadBase {
|
|
|
8680
8611
|
min?: number | null;
|
|
8681
8612
|
max?: number | null;
|
|
8682
8613
|
}
|
|
8683
|
-
export interface ImaMechanicalSpecificationDto {
|
|
8614
|
+
export interface ImaMechanicalSpecificationDto extends ImaCdfEntityReadBase {
|
|
8684
8615
|
yieldStrength?: ImaSpecificationLineDto | null;
|
|
8685
8616
|
tensileStrength?: ImaSpecificationLineDto | null;
|
|
8686
8617
|
elongation?: ImaSpecificationLineDto | null;
|
|
@@ -8688,26 +8619,26 @@ export interface ImaMechanicalSpecificationDto {
|
|
|
8688
8619
|
impactEnergy?: ImaSpecificationLineDto | null;
|
|
8689
8620
|
hardness?: ImaSpecificationLineDto | null;
|
|
8690
8621
|
}
|
|
8691
|
-
export interface ImaFerriteSpecificationDto {
|
|
8622
|
+
export interface ImaFerriteSpecificationDto extends ImaCdfEntityReadBase {
|
|
8692
8623
|
ferriteContent?: ImaSpecificationLineDto | null;
|
|
8693
8624
|
}
|
|
8694
|
-
export interface ImaHeatTreatmentSpecificationDto {
|
|
8625
|
+
export interface ImaHeatTreatmentSpecificationDto extends ImaCdfEntityReadBase {
|
|
8695
8626
|
step: number;
|
|
8696
8627
|
cooling?: ImaHeatTreatmentSpecificationCoolingDto | null;
|
|
8697
8628
|
heating?: ImaHeatTreatmentSpecificationHeatingDto | null;
|
|
8698
8629
|
}
|
|
8699
|
-
export interface ImaHeatTreatmentSpecificationCoolingDto {
|
|
8700
|
-
coolingMethods:
|
|
8630
|
+
export interface ImaHeatTreatmentSpecificationCoolingDto extends ImaCdfEntityReadBase {
|
|
8631
|
+
coolingMethods: ImaHeatTreatmentCoolingMethod[];
|
|
8701
8632
|
temperature?: ImaSpecificationLineDto | null;
|
|
8702
8633
|
duration?: ImaSpecificationLineDto | null;
|
|
8703
8634
|
}
|
|
8704
|
-
export type
|
|
8705
|
-
export interface ImaHeatTreatmentSpecificationHeatingDto {
|
|
8706
|
-
heatingMethod:
|
|
8635
|
+
export type ImaHeatTreatmentCoolingMethod = "NoCoolingMethod" | "AirCooling" | "FurnaceCooling" | "OilQuenching" | "PolymerQuenching" | "WaterQuenching" | "NotSet";
|
|
8636
|
+
export interface ImaHeatTreatmentSpecificationHeatingDto extends ImaCdfEntityReadBase {
|
|
8637
|
+
heatingMethod: ImaHeatTreatmentHeatingMethod;
|
|
8707
8638
|
temperature?: ImaSpecificationLineDto | null;
|
|
8708
8639
|
duration?: ImaSpecificationLineDto | null;
|
|
8709
8640
|
}
|
|
8710
|
-
export type
|
|
8641
|
+
export type ImaHeatTreatmentHeatingMethod = "Annealing" | "Austenitizing" | "Hardening" | "Normalizing" | "SolutionAnnealing" | "StressRelieving" | "Tempering" | "NotSet";
|
|
8711
8642
|
export interface ImaCreateSpecificationRequestDto {
|
|
8712
8643
|
name: string;
|
|
8713
8644
|
number: string;
|
|
@@ -8724,7 +8655,7 @@ export interface ImaCopySpecificationRequestDto {
|
|
|
8724
8655
|
export interface ImaUpdateSpecificationDto {
|
|
8725
8656
|
name?: string | null;
|
|
8726
8657
|
number?: string | null;
|
|
8727
|
-
status?:
|
|
8658
|
+
status?: ImaSpecificationStatus | null;
|
|
8728
8659
|
summary?: string | null;
|
|
8729
8660
|
relatedStandards?: string[] | null;
|
|
8730
8661
|
chemistrySpecification?: ImaChemistrySpecificationDto | null;
|
|
@@ -8732,95 +8663,25 @@ export interface ImaUpdateSpecificationDto {
|
|
|
8732
8663
|
ferriteSpecification?: ImaFerriteSpecificationDto | null;
|
|
8733
8664
|
heatSpecifications?: ImaHeatTreatmentSpecificationDto[] | null;
|
|
8734
8665
|
}
|
|
8735
|
-
export interface ImaSpecificationLiteDto {
|
|
8666
|
+
export interface ImaSpecificationLiteDto extends ImaCdfEntityReadBase {
|
|
8736
8667
|
specificationId: string;
|
|
8737
8668
|
version: number;
|
|
8738
8669
|
name: string;
|
|
8739
8670
|
number: string;
|
|
8740
8671
|
revision: string;
|
|
8741
8672
|
date: Date;
|
|
8742
|
-
status:
|
|
8673
|
+
status: ImaSpecificationStatus;
|
|
8743
8674
|
summary?: string | null;
|
|
8744
8675
|
relatedStandards: string[];
|
|
8745
8676
|
created: Date;
|
|
8746
8677
|
createdBy: string;
|
|
8747
8678
|
createdById: string;
|
|
8748
|
-
createdByName
|
|
8679
|
+
createdByName: string;
|
|
8749
8680
|
updatedBy: string;
|
|
8750
8681
|
updatedById: string;
|
|
8751
|
-
updatedByName
|
|
8752
|
-
updated: Date;
|
|
8682
|
+
updatedByName: string;
|
|
8753
8683
|
isDeleted: boolean;
|
|
8754
8684
|
}
|
|
8755
|
-
export interface SchemaCreatorStateDto {
|
|
8756
|
-
settings: SchemaCreatorSettingsDto;
|
|
8757
|
-
elements: SchemaCreatorElementDto[];
|
|
8758
|
-
}
|
|
8759
|
-
export interface SchemaCreatorSettingsDto {
|
|
8760
|
-
unit?: UnitOfMeasureDto;
|
|
8761
|
-
tolerance?: GeneralToleranceDto;
|
|
8762
|
-
balloonSize?: number;
|
|
8763
|
-
}
|
|
8764
|
-
export type UnitOfMeasureDto = "Millimeter" | "Inch";
|
|
8765
|
-
export type GeneralToleranceDto = "NotSet" | "Fine" | "Medium" | "Coarse" | "VeryCoarse";
|
|
8766
|
-
export interface SchemaCreatorElementDto {
|
|
8767
|
-
id: string;
|
|
8768
|
-
kind: SchemaCreatorElementKindDto;
|
|
8769
|
-
drawings: SchemaCreatorElementDrawingsDto;
|
|
8770
|
-
isDirty?: boolean | null;
|
|
8771
|
-
values?: SchemaCreatorElementValuesDto | null;
|
|
8772
|
-
parseResult?: SchemaCreatorSnipResultDto | null;
|
|
8773
|
-
}
|
|
8774
|
-
export type SchemaCreatorElementKindDto = "Pending" | "Auto" | "Manual";
|
|
8775
|
-
export interface SchemaCreatorElementDrawingsDto {
|
|
8776
|
-
square: SchemaCreatorDrawingDto;
|
|
8777
|
-
circle: SchemaCreatorDrawingDto;
|
|
8778
|
-
textId: string;
|
|
8779
|
-
}
|
|
8780
|
-
export interface SchemaCreatorDrawingDto {
|
|
8781
|
-
rect: SchemaCreatorRectDto;
|
|
8782
|
-
pageIndex: number;
|
|
8783
|
-
annotationId: string;
|
|
8784
|
-
rotation?: number | null;
|
|
8785
|
-
unrotatedRect?: SchemaCreatorRectDto | null;
|
|
8786
|
-
}
|
|
8787
|
-
export interface SchemaCreatorRectDto {
|
|
8788
|
-
origin: SchemaCreatorPointDto;
|
|
8789
|
-
size: SchemaCreatorSizeDto;
|
|
8790
|
-
}
|
|
8791
|
-
export interface SchemaCreatorPointDto {
|
|
8792
|
-
x: number;
|
|
8793
|
-
y: number;
|
|
8794
|
-
}
|
|
8795
|
-
export interface SchemaCreatorSizeDto {
|
|
8796
|
-
width: number;
|
|
8797
|
-
height: number;
|
|
8798
|
-
}
|
|
8799
|
-
export interface SchemaCreatorElementValuesDto {
|
|
8800
|
-
reference: number;
|
|
8801
|
-
nominal?: number | null;
|
|
8802
|
-
nominalText?: string | null;
|
|
8803
|
-
plusTolerance?: number | null;
|
|
8804
|
-
minusTolerance?: number | null;
|
|
8805
|
-
coatingThickness?: number | null;
|
|
8806
|
-
measurementFrequency: MeasurementFrequency;
|
|
8807
|
-
measurementFrequencyParameter?: number | null;
|
|
8808
|
-
type?: string | null;
|
|
8809
|
-
count?: number | null;
|
|
8810
|
-
comment?: string | null;
|
|
8811
|
-
canCopy: boolean;
|
|
8812
|
-
visibleToCustomer: boolean;
|
|
8813
|
-
isDocumentedExternally: boolean;
|
|
8814
|
-
}
|
|
8815
|
-
export type MeasurementFrequency = "All" | "FirstArticle" | "NFirst" | "NPercent" | "ISO2859" | "Nth" | "FirstAndLast" | "None";
|
|
8816
|
-
export interface SchemaCreatorSnipResultDto {
|
|
8817
|
-
nominal?: number | null;
|
|
8818
|
-
nominalText?: string | null;
|
|
8819
|
-
plusTolerance?: number | null;
|
|
8820
|
-
minusTolerance?: number | null;
|
|
8821
|
-
coatingThickness?: number | null;
|
|
8822
|
-
count?: number | null;
|
|
8823
|
-
}
|
|
8824
8685
|
export interface MeasurementFormSchemaDto {
|
|
8825
8686
|
id: string;
|
|
8826
8687
|
versionId: number;
|
|
@@ -8852,7 +8713,9 @@ export interface MeasurementFormSchemaDto {
|
|
|
8852
8713
|
}
|
|
8853
8714
|
export type MeasurementFormStatus = "Draft" | "Released" | "Revoked";
|
|
8854
8715
|
export type MeasurementFormSource = "Unknown" | "InspectionXpert" | "Excel" | "Manual";
|
|
8716
|
+
export type UnitOfMeasureDto = "Millimeter" | "Inch";
|
|
8855
8717
|
export type DimensionSettingDto = "Tolerance" | "MinMaxDimension";
|
|
8718
|
+
export type GeneralToleranceDto = "NotSet" | "Fine" | "Medium" | "Coarse" | "VeryCoarse";
|
|
8856
8719
|
export interface MeasurementFormSchemaAttachmentDto {
|
|
8857
8720
|
url: string;
|
|
8858
8721
|
title: string;
|
|
@@ -8901,6 +8764,7 @@ export interface MeasurementFormGroupedElementDto {
|
|
|
8901
8764
|
isValid: boolean;
|
|
8902
8765
|
validationErrorMessage?: string | null;
|
|
8903
8766
|
}
|
|
8767
|
+
export type MeasurementFrequency = "All" | "FirstArticle" | "NFirst" | "NPercent" | "ISO2859" | "Nth" | "FirstAndLast" | "None";
|
|
8904
8768
|
export type MeasurementFormValueType = "None" | "Bool" | "Decimal" | "String";
|
|
8905
8769
|
export type BonusType = "None" | "Positive" | "PositiveAndNegative";
|
|
8906
8770
|
export interface MeasurementFormLinkedSchemaDto {
|