@ignos/api-client 20260711.183.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 -339
- package/lib/ignosportal-api.js +265 -599
- package/package.json +1 -1
- package/src/ignosportal-api.ts +480 -937
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,56 +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
|
-
* Stamps the creator state's balloons onto the schema's drawing PDF and
|
|
2832
|
-
returns a temporary download link.
|
|
2833
|
-
*/
|
|
2834
|
-
exportSchemaCreatorDrawing(id: string): Promise<DownloadDto>;
|
|
2835
|
-
/**
|
|
2836
|
-
* Starts an async snip resolve; the result is delivered through the
|
|
2837
|
-
SchemaCreatorSnipResolved SignalR notification.
|
|
2838
|
-
* @param image (optional)
|
|
2839
|
-
*/
|
|
2840
|
-
resolveSchemaCreatorSnip(id: string, elementId: string, image: FileParameter | null | undefined): Promise<FileResponse>;
|
|
2841
|
-
}
|
|
2842
|
-
export declare class InspectSchemaCreatorClient extends AuthorizedApiBase implements IInspectSchemaCreatorClient {
|
|
2843
|
-
private http;
|
|
2844
|
-
private baseUrl;
|
|
2845
|
-
constructor(configuration: IApiClientConfig, baseUrl?: string, http?: {
|
|
2846
|
-
fetch(url: RequestInfo, init?: RequestInit): Promise<Response>;
|
|
2847
|
-
});
|
|
2848
|
-
getSchemaCreatorState(id: string): Promise<SchemaCreatorStateDto>;
|
|
2849
|
-
protected processGetSchemaCreatorState(response: Response): Promise<SchemaCreatorStateDto>;
|
|
2850
|
-
/**
|
|
2851
|
-
* Creates the initial creator state for a schema version. Returns 409 if
|
|
2852
|
-
state already exists; the caller should re-fetch it instead of writing.
|
|
2853
|
-
*/
|
|
2854
|
-
createSchemaCreatorState(id: string, state: SchemaCreatorStateDto): Promise<SchemaCreatorStateDto>;
|
|
2855
|
-
protected processCreateSchemaCreatorState(response: Response): Promise<SchemaCreatorStateDto>;
|
|
2856
|
-
updateSchemaCreatorState(id: string, state: SchemaCreatorStateDto): Promise<SchemaCreatorStateDto>;
|
|
2857
|
-
protected processUpdateSchemaCreatorState(response: Response): Promise<SchemaCreatorStateDto>;
|
|
2858
|
-
/**
|
|
2859
|
-
* Stamps the creator state's balloons onto the schema's drawing PDF and
|
|
2860
|
-
returns a temporary download link.
|
|
2861
|
-
*/
|
|
2862
|
-
exportSchemaCreatorDrawing(id: string): Promise<DownloadDto>;
|
|
2863
|
-
protected processExportSchemaCreatorDrawing(response: Response): Promise<DownloadDto>;
|
|
2864
|
-
/**
|
|
2865
|
-
* Starts an async snip resolve; the result is delivered through the
|
|
2866
|
-
SchemaCreatorSnipResolved SignalR notification.
|
|
2867
|
-
* @param image (optional)
|
|
2868
|
-
*/
|
|
2869
|
-
resolveSchemaCreatorSnip(id: string, elementId: string, image: FileParameter | null | undefined): Promise<FileResponse>;
|
|
2870
|
-
protected processResolveSchemaCreatorSnip(response: Response): Promise<FileResponse>;
|
|
2871
|
-
}
|
|
2872
2785
|
export interface IMeasurementFormSchemasAdminClient {
|
|
2873
2786
|
getArchivedMeasurementFormSchema(id: string): Promise<MeasurementFormSchemaDto>;
|
|
2874
2787
|
createMeasurementForm(request: CreateMeasurementFormSchema): Promise<MeasurementFormDto>;
|
|
@@ -4300,7 +4213,7 @@ export interface UpdateCalendarSettingsCommand {
|
|
|
4300
4213
|
}
|
|
4301
4214
|
export interface ShiftPlansDto {
|
|
4302
4215
|
active: ShiftPlanDto[];
|
|
4303
|
-
archived:
|
|
4216
|
+
archived: ShiftPlanDto[];
|
|
4304
4217
|
}
|
|
4305
4218
|
export interface ShiftPlanDto {
|
|
4306
4219
|
id: string;
|
|
@@ -4312,27 +4225,6 @@ export interface ShiftPlanDto {
|
|
|
4312
4225
|
updatedBy?: string | null;
|
|
4313
4226
|
isArchived?: boolean;
|
|
4314
4227
|
}
|
|
4315
|
-
export interface ArchivedShiftPlanDto extends ShiftPlanDto {
|
|
4316
|
-
usage: ShiftSettingPeriodsDto[];
|
|
4317
|
-
}
|
|
4318
|
-
export interface ShiftSettingPeriodsDto {
|
|
4319
|
-
resourceExternalId: string;
|
|
4320
|
-
resourceName: string;
|
|
4321
|
-
resourceDescription?: string | null;
|
|
4322
|
-
periods: ShiftSettingsPeriodDto[];
|
|
4323
|
-
}
|
|
4324
|
-
export interface ShiftSettingsPeriodDto {
|
|
4325
|
-
resourceExternalId: string;
|
|
4326
|
-
shiftPlanId: string;
|
|
4327
|
-
shiftPlanName: string;
|
|
4328
|
-
effectiveFrom: string;
|
|
4329
|
-
effectiveTo?: string | null;
|
|
4330
|
-
targetPercent: number;
|
|
4331
|
-
comment?: string | null;
|
|
4332
|
-
hoursPerWeekday: {
|
|
4333
|
-
[key in DayOfWeek]?: number;
|
|
4334
|
-
};
|
|
4335
|
-
}
|
|
4336
4228
|
export interface CreateShiftPlan {
|
|
4337
4229
|
name: string;
|
|
4338
4230
|
hoursPerWeekday: {
|
|
@@ -4354,6 +4246,23 @@ export interface ShiftSettingsPeriodGroupDto {
|
|
|
4354
4246
|
resourceGroupName: string;
|
|
4355
4247
|
resources: ShiftSettingPeriodsDto[];
|
|
4356
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
|
+
}
|
|
4357
4266
|
export interface AddShiftSettingPeriods {
|
|
4358
4267
|
resourceExternalIds: string[];
|
|
4359
4268
|
shiftPlanId: string;
|
|
@@ -4375,11 +4284,8 @@ export interface PeriodKey {
|
|
|
4375
4284
|
effectiveFrom: string;
|
|
4376
4285
|
}
|
|
4377
4286
|
export interface CopyShiftSettingsPeriodRequest {
|
|
4378
|
-
|
|
4379
|
-
|
|
4380
|
-
export interface SourceShiftSettingPeriod {
|
|
4381
|
-
sourceResourceExternalId: string;
|
|
4382
|
-
sourceEffectiveFrom: string;
|
|
4287
|
+
targetResourceExternalId: string;
|
|
4288
|
+
effectiveFrom: string;
|
|
4383
4289
|
}
|
|
4384
4290
|
export interface MigrationResultDto {
|
|
4385
4291
|
created?: number;
|
|
@@ -5707,40 +5613,6 @@ export interface CrossCompanyUtilizationSummaryDto {
|
|
|
5707
5613
|
crossCompany: FactoryUtilizationDto;
|
|
5708
5614
|
companies: MachineGroupUtilizationDto[];
|
|
5709
5615
|
}
|
|
5710
|
-
export interface LiveMachineDataDto {
|
|
5711
|
-
assetId?: number;
|
|
5712
|
-
dataPoints?: LiveMachineDataPointDto[];
|
|
5713
|
-
}
|
|
5714
|
-
export interface LiveMachineDataPointDto {
|
|
5715
|
-
externalId?: string;
|
|
5716
|
-
timestamp?: number | null;
|
|
5717
|
-
numericValue?: number | null;
|
|
5718
|
-
stringValue?: string | null;
|
|
5719
|
-
}
|
|
5720
|
-
export interface TimeseriesGraphDto {
|
|
5721
|
-
assetId?: number;
|
|
5722
|
-
series?: TimeseriesGraphSeriesDto[];
|
|
5723
|
-
}
|
|
5724
|
-
export interface TimeseriesGraphSeriesDto {
|
|
5725
|
-
externalId?: string;
|
|
5726
|
-
isString?: boolean;
|
|
5727
|
-
dataPoints?: TimeseriesGraphDataPointDto[];
|
|
5728
|
-
}
|
|
5729
|
-
export interface TimeseriesGraphDataPointDto {
|
|
5730
|
-
timestamp?: number;
|
|
5731
|
-
numericValue?: number | null;
|
|
5732
|
-
stringValue?: string | null;
|
|
5733
|
-
}
|
|
5734
|
-
export interface ExportTimeseriesGraphRequest {
|
|
5735
|
-
series?: TimeseriesExportSeries[];
|
|
5736
|
-
startTime?: Date;
|
|
5737
|
-
endTime?: Date;
|
|
5738
|
-
}
|
|
5739
|
-
export interface TimeseriesExportSeries {
|
|
5740
|
-
externalId?: string;
|
|
5741
|
-
displayName?: string | null;
|
|
5742
|
-
unit?: string | null;
|
|
5743
|
-
}
|
|
5744
5616
|
export interface LinkDto {
|
|
5745
5617
|
id: string;
|
|
5746
5618
|
uri: string;
|
|
@@ -5784,7 +5656,7 @@ export interface ImportDocument {
|
|
|
5784
5656
|
lots: string[];
|
|
5785
5657
|
frontPageDocumentId?: string | null;
|
|
5786
5658
|
documentSource: DocumentSource;
|
|
5787
|
-
uploadKey
|
|
5659
|
+
uploadKey: string;
|
|
5788
5660
|
created?: Date | null;
|
|
5789
5661
|
createdBy?: string | null;
|
|
5790
5662
|
createdById?: string | null;
|
|
@@ -5816,8 +5688,7 @@ export interface ImportDocumentRevisionDto {
|
|
|
5816
5688
|
approvals: DocumentRevisionApprovalDto[];
|
|
5817
5689
|
}
|
|
5818
5690
|
export interface ImportDocumentRevisionContentDto {
|
|
5819
|
-
uploadFilename
|
|
5820
|
-
sourceUrl?: string | null;
|
|
5691
|
+
uploadFilename: string;
|
|
5821
5692
|
originalFilename: string;
|
|
5822
5693
|
extension: string;
|
|
5823
5694
|
}
|
|
@@ -7344,19 +7215,6 @@ export interface EngineeringChangeOrdersDto {
|
|
|
7344
7215
|
mostRecentEngineeringChangeOrder?: Date | null;
|
|
7345
7216
|
engineeringChangeOrders?: EngineeringChangeOrderDto[];
|
|
7346
7217
|
}
|
|
7347
|
-
export interface IndirectActivityDto {
|
|
7348
|
-
activityId: string;
|
|
7349
|
-
name: string;
|
|
7350
|
-
companyId: string;
|
|
7351
|
-
}
|
|
7352
|
-
export interface CurrentIndirectActivityDto {
|
|
7353
|
-
activityId?: string | null;
|
|
7354
|
-
personnelNumber?: string | null;
|
|
7355
|
-
startTime?: Date | null;
|
|
7356
|
-
}
|
|
7357
|
-
export interface StartIndirectActivity {
|
|
7358
|
-
activityId: string;
|
|
7359
|
-
}
|
|
7360
7218
|
export interface AddMesLink {
|
|
7361
7219
|
uri: string;
|
|
7362
7220
|
name: string;
|
|
@@ -7397,17 +7255,72 @@ export interface LabelId {
|
|
|
7397
7255
|
parcelId: string;
|
|
7398
7256
|
trackingId?: string | null;
|
|
7399
7257
|
}
|
|
7400
|
-
export
|
|
7401
|
-
|
|
7402
|
-
|
|
7403
|
-
|
|
7404
|
-
|
|
7405
|
-
|
|
7406
|
-
|
|
7407
|
-
|
|
7408
|
-
|
|
7409
|
-
|
|
7410
|
-
|
|
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;
|
|
7411
7324
|
}
|
|
7412
7325
|
export interface ProductionOrderDto {
|
|
7413
7326
|
id: string;
|
|
@@ -7467,6 +7380,15 @@ export interface ProductionOrderOperationDto {
|
|
|
7467
7380
|
productionStatus: OperationStatusDto;
|
|
7468
7381
|
setupStatus?: OperationStatusDto | null;
|
|
7469
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
|
+
}
|
|
7470
7392
|
export interface DrawingDto {
|
|
7471
7393
|
drawingNumber: string;
|
|
7472
7394
|
revision: string;
|
|
@@ -7672,6 +7594,7 @@ export interface ProductionScheduleOperationDto {
|
|
|
7672
7594
|
materialPickStatus: MaterialPickStatus;
|
|
7673
7595
|
productionStatus: OperationStatusDto;
|
|
7674
7596
|
setupStatus?: OperationStatusDto | null;
|
|
7597
|
+
programStatus?: ProgramStatus | null;
|
|
7675
7598
|
}
|
|
7676
7599
|
export interface SurroundingOperationDto {
|
|
7677
7600
|
id: string;
|
|
@@ -7970,31 +7893,34 @@ export interface WeldingIotConfigDto {
|
|
|
7970
7893
|
}
|
|
7971
7894
|
export interface CreateWeldingIotConfig {
|
|
7972
7895
|
}
|
|
7973
|
-
export interface
|
|
7896
|
+
export interface ImaCdfEntityReadBase {
|
|
7897
|
+
}
|
|
7898
|
+
export interface ImaCertificateTypeDto extends ImaCdfEntityReadBase {
|
|
7899
|
+
companyId: string;
|
|
7974
7900
|
certificateTypeId: string;
|
|
7975
7901
|
version: number;
|
|
7976
7902
|
allVersions: ImaCertificateTypeVersionDto[];
|
|
7977
7903
|
name: string;
|
|
7978
7904
|
revision: string;
|
|
7979
|
-
status:
|
|
7905
|
+
status: ImaCertificateTypeStatus;
|
|
7980
7906
|
description?: string | null;
|
|
7981
7907
|
isStandardCertificateType: boolean;
|
|
7982
7908
|
created: Date;
|
|
7983
7909
|
createdBy: string;
|
|
7984
7910
|
createdById: string;
|
|
7985
|
-
createdByName
|
|
7911
|
+
createdByName: string;
|
|
7986
7912
|
updatedBy: string;
|
|
7987
7913
|
updatedById: string;
|
|
7988
|
-
updatedByName
|
|
7914
|
+
updatedByName: string;
|
|
7989
7915
|
updated: Date;
|
|
7990
7916
|
isDeleted: boolean;
|
|
7991
7917
|
requirements: ImaCertificateTypeRequirementsDto;
|
|
7992
7918
|
}
|
|
7993
7919
|
export interface ImaCertificateTypeVersionDto {
|
|
7994
7920
|
version?: number;
|
|
7995
|
-
status?:
|
|
7921
|
+
status?: ImaCertificateTypeStatus;
|
|
7996
7922
|
}
|
|
7997
|
-
export type
|
|
7923
|
+
export type ImaCertificateTypeStatus = "Draft" | "Released" | "Expired" | "Rejected" | "NotSet";
|
|
7998
7924
|
export interface ImaCertificateTypeRequirementsDto {
|
|
7999
7925
|
manufacturer: ImaCertificateTypeManufacturerRequirementsDto;
|
|
8000
7926
|
signature: ImaCertificateTypeSignatureRequirementsDto;
|
|
@@ -8005,8 +7931,6 @@ export interface ImaCertificateTypeRequirementsDto {
|
|
|
8005
7931
|
testResults: ImaCertificateTypeTestResultsRequirementsDto;
|
|
8006
7932
|
documentTypes: ImaCertificateTypeDocumentTypesRequirementsDto;
|
|
8007
7933
|
}
|
|
8008
|
-
export interface ImaCdfEntityReadBase {
|
|
8009
|
-
}
|
|
8010
7934
|
export interface ImaCertificateTypeManufacturerRequirementsDto extends ImaCdfEntityReadBase {
|
|
8011
7935
|
manufacturer?: boolean;
|
|
8012
7936
|
address?: boolean;
|
|
@@ -8074,7 +7998,7 @@ export interface ImaCreateOrCopyCertificateTypeRequestDto {
|
|
|
8074
7998
|
export interface ImaUpdateImaCertificateTypeRequestDto {
|
|
8075
7999
|
name?: string | null;
|
|
8076
8000
|
revision?: string | null;
|
|
8077
|
-
status?:
|
|
8001
|
+
status?: ImaCertificateTypeStatus | null;
|
|
8078
8002
|
description?: string | null;
|
|
8079
8003
|
requirements?: ImaCertificateTypeRequirementsUpdateDto | null;
|
|
8080
8004
|
}
|
|
@@ -8147,21 +8071,21 @@ export interface ImaCertificateTypeDocumentTypesRequirementsUpdateDto {
|
|
|
8147
8071
|
microExaminationReport?: boolean | null;
|
|
8148
8072
|
radiologicalReport?: boolean | null;
|
|
8149
8073
|
}
|
|
8150
|
-
export interface ImaCertificateTypeLiteDto {
|
|
8074
|
+
export interface ImaCertificateTypeLiteDto extends ImaCdfEntityReadBase {
|
|
8151
8075
|
certificateTypeId: string;
|
|
8152
8076
|
version: number;
|
|
8153
8077
|
name: string;
|
|
8154
8078
|
revision: string;
|
|
8155
|
-
status:
|
|
8079
|
+
status: ImaCertificateTypeStatus;
|
|
8156
8080
|
description?: string | null;
|
|
8157
8081
|
isStandardCertificateType: boolean;
|
|
8158
8082
|
created: Date;
|
|
8159
8083
|
createdBy: string;
|
|
8160
8084
|
createdById: string;
|
|
8161
|
-
createdByName
|
|
8085
|
+
createdByName: string;
|
|
8162
8086
|
updatedBy: string;
|
|
8163
8087
|
updatedById: string;
|
|
8164
|
-
updatedByName
|
|
8088
|
+
updatedByName: string;
|
|
8165
8089
|
updated: Date;
|
|
8166
8090
|
isDeleted: boolean;
|
|
8167
8091
|
}
|
|
@@ -8177,29 +8101,27 @@ export interface ImaMaterialCheckDto {
|
|
|
8177
8101
|
certificateTypeVersion?: number | null;
|
|
8178
8102
|
certificateTypeName?: string | null;
|
|
8179
8103
|
certificateTypeRevision?: string | null;
|
|
8180
|
-
certificateTypeStatus: ImaCertificateTypeStatusDto;
|
|
8181
8104
|
specificationId: string;
|
|
8182
8105
|
specificationVersion: number;
|
|
8183
8106
|
specificationName: string;
|
|
8184
|
-
specificationRevision
|
|
8185
|
-
specificationStatus:
|
|
8107
|
+
specificationRevision: string;
|
|
8108
|
+
specificationStatus: ImaSpecificationStatus;
|
|
8109
|
+
certificateTypeStatus: ImaCertificateTypeStatus;
|
|
8186
8110
|
purchaseOrder?: string | null;
|
|
8187
8111
|
purchaseOrderLine?: number | null;
|
|
8188
8112
|
purchaseOrderVendorBatches?: string[] | null;
|
|
8189
8113
|
purchaseOrderPartName?: string | null;
|
|
8190
8114
|
purchaseOrderPartNumber?: string | null;
|
|
8191
|
-
purchaseOrderPartRevision?: string | null;
|
|
8192
8115
|
purchaseOrderDrawing?: string | null;
|
|
8193
|
-
purchaseOrderDrawingRevision?: string | null;
|
|
8194
8116
|
heatNumber?: string | null;
|
|
8195
|
-
status:
|
|
8117
|
+
status: ImaMaterialCheckStatus;
|
|
8196
8118
|
created: Date;
|
|
8197
8119
|
createdBy: string;
|
|
8198
8120
|
createdById: string;
|
|
8199
|
-
createdByName
|
|
8121
|
+
createdByName: string;
|
|
8200
8122
|
updatedBy: string;
|
|
8201
8123
|
updatedById: string;
|
|
8202
|
-
updatedByName
|
|
8124
|
+
updatedByName: string;
|
|
8203
8125
|
isDeleted: boolean;
|
|
8204
8126
|
reportCreatedBy?: string | null;
|
|
8205
8127
|
reportCreatedById?: string | null;
|
|
@@ -8208,8 +8130,8 @@ export interface ImaMaterialCheckDto {
|
|
|
8208
8130
|
certificateTypeResults: ImaCertificateTypeResultsDto;
|
|
8209
8131
|
specificationResults: ImaSpecificationResultsDto;
|
|
8210
8132
|
}
|
|
8211
|
-
export type
|
|
8212
|
-
export type
|
|
8133
|
+
export type ImaSpecificationStatus = "Draft" | "Released" | "Expired" | "Rejected" | "NotSet";
|
|
8134
|
+
export type ImaMaterialCheckStatus = "Processing" | "Draft" | "Approved" | "Rejected" | "Failed" | "NotSet";
|
|
8213
8135
|
export interface ImaCertificateTypeResultsDto extends ImaCdfEntityReadBase {
|
|
8214
8136
|
manufacturer: ImaCertificateTypeManufacturerResultsDto;
|
|
8215
8137
|
signature: ImaCertificateTypeSignatureResultsDto;
|
|
@@ -8316,10 +8238,10 @@ export interface ImaSpecificationResultLineDto extends ImaCdfEntityReadBase {
|
|
|
8316
8238
|
specificationMin?: number | null;
|
|
8317
8239
|
specificationMax?: number | null;
|
|
8318
8240
|
readValue?: string | null;
|
|
8319
|
-
status:
|
|
8241
|
+
status: ImaSpecificationResultLineStatus;
|
|
8320
8242
|
override?: ImaResultLineOverrideDto | null;
|
|
8321
8243
|
}
|
|
8322
|
-
export type
|
|
8244
|
+
export type ImaSpecificationResultLineStatus = "NotFound" | "NotOk" | "Ok" | "NotSet";
|
|
8323
8245
|
export interface ImaSpecificationMechanicalResultsDto extends ImaCdfEntityReadBase {
|
|
8324
8246
|
yieldStrength?: ImaSpecificationResultLineDto | null;
|
|
8325
8247
|
tensileStrength?: ImaSpecificationResultLineDto | null;
|
|
@@ -8335,7 +8257,7 @@ export interface ImaSpecificationFerriteResultLineDto extends ImaCdfEntityReadBa
|
|
|
8335
8257
|
specificationMin?: number | null;
|
|
8336
8258
|
specificationMax?: number | null;
|
|
8337
8259
|
readValue?: string | null;
|
|
8338
|
-
status:
|
|
8260
|
+
status: ImaSpecificationResultLineStatus;
|
|
8339
8261
|
override?: ImaResultLineOverrideDto | null;
|
|
8340
8262
|
measurementMethod?: string | null;
|
|
8341
8263
|
}
|
|
@@ -8483,29 +8405,27 @@ export interface ImaMaterialCheckLiteDto {
|
|
|
8483
8405
|
certificateTypeVersion?: number | null;
|
|
8484
8406
|
certificateTypeName?: string | null;
|
|
8485
8407
|
certificateTypeRevision?: string | null;
|
|
8486
|
-
certificateTypeStatus: ImaCertificateTypeStatusDto;
|
|
8487
8408
|
specificationId: string;
|
|
8488
8409
|
specificationVersion: number;
|
|
8489
8410
|
specificationName: string;
|
|
8490
|
-
specificationRevision
|
|
8491
|
-
specificationStatus: ImaSpecificationStatusDto;
|
|
8411
|
+
specificationRevision: string;
|
|
8492
8412
|
purchaseOrder?: string | null;
|
|
8493
8413
|
purchaseOrderLine?: number | null;
|
|
8494
8414
|
purchaseOrderVendorBatches?: string[] | null;
|
|
8495
8415
|
purchaseOrderPartName?: string | null;
|
|
8496
8416
|
purchaseOrderPartNumber?: string | null;
|
|
8497
|
-
purchaseOrderPartRevision?: string | null;
|
|
8498
8417
|
purchaseOrderDrawing?: string | null;
|
|
8499
|
-
purchaseOrderDrawingRevision?: string | null;
|
|
8500
8418
|
heatNumber?: string | null;
|
|
8501
|
-
status:
|
|
8419
|
+
status: ImaMaterialCheckStatus;
|
|
8420
|
+
specificationStatus: ImaSpecificationStatus;
|
|
8421
|
+
certificateTypeStatus: ImaCertificateTypeStatus;
|
|
8502
8422
|
created: Date;
|
|
8503
8423
|
createdBy: string;
|
|
8504
8424
|
createdById: string;
|
|
8505
|
-
createdByName
|
|
8425
|
+
createdByName: string;
|
|
8506
8426
|
updatedBy: string;
|
|
8507
8427
|
updatedById: string;
|
|
8508
|
-
updatedByName
|
|
8428
|
+
updatedByName: string;
|
|
8509
8429
|
isDeleted?: boolean;
|
|
8510
8430
|
reportCreatedBy?: string | null;
|
|
8511
8431
|
reportCreatedById?: string | null;
|
|
@@ -8531,15 +8451,15 @@ export interface ImaMaterialChecksPageRequestDto {
|
|
|
8531
8451
|
purchaseOrderDrawingFilter?: string | null;
|
|
8532
8452
|
dateFromFilter?: Date | null;
|
|
8533
8453
|
dateToFilter?: Date | null;
|
|
8534
|
-
statusFilter?:
|
|
8454
|
+
statusFilter?: ImaMaterialCheckStatus[] | null;
|
|
8535
8455
|
continuationToken?: string | null;
|
|
8536
8456
|
}
|
|
8537
8457
|
export interface ImaMaterialChecksPageOrderRequestDto {
|
|
8538
|
-
column?:
|
|
8539
|
-
direction?:
|
|
8458
|
+
column?: ImaMaterialChecksOrderByColumn;
|
|
8459
|
+
direction?: ImaOrderDirection;
|
|
8540
8460
|
}
|
|
8541
|
-
export type
|
|
8542
|
-
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";
|
|
8543
8463
|
export interface ProcessMaterialCertificate {
|
|
8544
8464
|
files: UploadFileCdfDto[];
|
|
8545
8465
|
specificationId: string;
|
|
@@ -8644,7 +8564,7 @@ export interface ImaUpdateMatchSettingsColumnsDto {
|
|
|
8644
8564
|
date: boolean;
|
|
8645
8565
|
status: boolean;
|
|
8646
8566
|
}
|
|
8647
|
-
export interface ImaSpecificationDto {
|
|
8567
|
+
export interface ImaSpecificationDto extends ImaCdfEntityReadBase {
|
|
8648
8568
|
specificationId: string;
|
|
8649
8569
|
version: number;
|
|
8650
8570
|
allVersions: ImaSpecificationVersionDto[];
|
|
@@ -8652,16 +8572,16 @@ export interface ImaSpecificationDto {
|
|
|
8652
8572
|
number: string;
|
|
8653
8573
|
revision: string;
|
|
8654
8574
|
date: Date;
|
|
8655
|
-
status:
|
|
8575
|
+
status: ImaSpecificationStatus;
|
|
8656
8576
|
summary?: string | null;
|
|
8657
8577
|
relatedStandards: string[];
|
|
8658
8578
|
created: Date;
|
|
8659
8579
|
createdBy: string;
|
|
8660
8580
|
createdById: string;
|
|
8661
|
-
createdByName
|
|
8581
|
+
createdByName: string;
|
|
8662
8582
|
updatedBy: string;
|
|
8663
8583
|
updatedById: string;
|
|
8664
|
-
updatedByName
|
|
8584
|
+
updatedByName: string;
|
|
8665
8585
|
updated: Date;
|
|
8666
8586
|
isDeleted: boolean;
|
|
8667
8587
|
chemistrySpecification: ImaChemistrySpecificationDto;
|
|
@@ -8671,9 +8591,9 @@ export interface ImaSpecificationDto {
|
|
|
8671
8591
|
}
|
|
8672
8592
|
export interface ImaSpecificationVersionDto {
|
|
8673
8593
|
version?: number;
|
|
8674
|
-
status?:
|
|
8594
|
+
status?: ImaSpecificationStatus;
|
|
8675
8595
|
}
|
|
8676
|
-
export interface ImaChemistrySpecificationDto {
|
|
8596
|
+
export interface ImaChemistrySpecificationDto extends ImaCdfEntityReadBase {
|
|
8677
8597
|
carbon?: ImaSpecificationLineDto | null;
|
|
8678
8598
|
manganese?: ImaSpecificationLineDto | null;
|
|
8679
8599
|
silicon?: ImaSpecificationLineDto | null;
|
|
@@ -8691,7 +8611,7 @@ export interface ImaSpecificationLineDto extends ImaCdfEntityReadBase {
|
|
|
8691
8611
|
min?: number | null;
|
|
8692
8612
|
max?: number | null;
|
|
8693
8613
|
}
|
|
8694
|
-
export interface ImaMechanicalSpecificationDto {
|
|
8614
|
+
export interface ImaMechanicalSpecificationDto extends ImaCdfEntityReadBase {
|
|
8695
8615
|
yieldStrength?: ImaSpecificationLineDto | null;
|
|
8696
8616
|
tensileStrength?: ImaSpecificationLineDto | null;
|
|
8697
8617
|
elongation?: ImaSpecificationLineDto | null;
|
|
@@ -8699,26 +8619,26 @@ export interface ImaMechanicalSpecificationDto {
|
|
|
8699
8619
|
impactEnergy?: ImaSpecificationLineDto | null;
|
|
8700
8620
|
hardness?: ImaSpecificationLineDto | null;
|
|
8701
8621
|
}
|
|
8702
|
-
export interface ImaFerriteSpecificationDto {
|
|
8622
|
+
export interface ImaFerriteSpecificationDto extends ImaCdfEntityReadBase {
|
|
8703
8623
|
ferriteContent?: ImaSpecificationLineDto | null;
|
|
8704
8624
|
}
|
|
8705
|
-
export interface ImaHeatTreatmentSpecificationDto {
|
|
8625
|
+
export interface ImaHeatTreatmentSpecificationDto extends ImaCdfEntityReadBase {
|
|
8706
8626
|
step: number;
|
|
8707
8627
|
cooling?: ImaHeatTreatmentSpecificationCoolingDto | null;
|
|
8708
8628
|
heating?: ImaHeatTreatmentSpecificationHeatingDto | null;
|
|
8709
8629
|
}
|
|
8710
|
-
export interface ImaHeatTreatmentSpecificationCoolingDto {
|
|
8711
|
-
coolingMethods:
|
|
8630
|
+
export interface ImaHeatTreatmentSpecificationCoolingDto extends ImaCdfEntityReadBase {
|
|
8631
|
+
coolingMethods: ImaHeatTreatmentCoolingMethod[];
|
|
8712
8632
|
temperature?: ImaSpecificationLineDto | null;
|
|
8713
8633
|
duration?: ImaSpecificationLineDto | null;
|
|
8714
8634
|
}
|
|
8715
|
-
export type
|
|
8716
|
-
export interface ImaHeatTreatmentSpecificationHeatingDto {
|
|
8717
|
-
heatingMethod:
|
|
8635
|
+
export type ImaHeatTreatmentCoolingMethod = "NoCoolingMethod" | "AirCooling" | "FurnaceCooling" | "OilQuenching" | "PolymerQuenching" | "WaterQuenching" | "NotSet";
|
|
8636
|
+
export interface ImaHeatTreatmentSpecificationHeatingDto extends ImaCdfEntityReadBase {
|
|
8637
|
+
heatingMethod: ImaHeatTreatmentHeatingMethod;
|
|
8718
8638
|
temperature?: ImaSpecificationLineDto | null;
|
|
8719
8639
|
duration?: ImaSpecificationLineDto | null;
|
|
8720
8640
|
}
|
|
8721
|
-
export type
|
|
8641
|
+
export type ImaHeatTreatmentHeatingMethod = "Annealing" | "Austenitizing" | "Hardening" | "Normalizing" | "SolutionAnnealing" | "StressRelieving" | "Tempering" | "NotSet";
|
|
8722
8642
|
export interface ImaCreateSpecificationRequestDto {
|
|
8723
8643
|
name: string;
|
|
8724
8644
|
number: string;
|
|
@@ -8735,7 +8655,7 @@ export interface ImaCopySpecificationRequestDto {
|
|
|
8735
8655
|
export interface ImaUpdateSpecificationDto {
|
|
8736
8656
|
name?: string | null;
|
|
8737
8657
|
number?: string | null;
|
|
8738
|
-
status?:
|
|
8658
|
+
status?: ImaSpecificationStatus | null;
|
|
8739
8659
|
summary?: string | null;
|
|
8740
8660
|
relatedStandards?: string[] | null;
|
|
8741
8661
|
chemistrySpecification?: ImaChemistrySpecificationDto | null;
|
|
@@ -8743,95 +8663,25 @@ export interface ImaUpdateSpecificationDto {
|
|
|
8743
8663
|
ferriteSpecification?: ImaFerriteSpecificationDto | null;
|
|
8744
8664
|
heatSpecifications?: ImaHeatTreatmentSpecificationDto[] | null;
|
|
8745
8665
|
}
|
|
8746
|
-
export interface ImaSpecificationLiteDto {
|
|
8666
|
+
export interface ImaSpecificationLiteDto extends ImaCdfEntityReadBase {
|
|
8747
8667
|
specificationId: string;
|
|
8748
8668
|
version: number;
|
|
8749
8669
|
name: string;
|
|
8750
8670
|
number: string;
|
|
8751
8671
|
revision: string;
|
|
8752
8672
|
date: Date;
|
|
8753
|
-
status:
|
|
8673
|
+
status: ImaSpecificationStatus;
|
|
8754
8674
|
summary?: string | null;
|
|
8755
8675
|
relatedStandards: string[];
|
|
8756
8676
|
created: Date;
|
|
8757
8677
|
createdBy: string;
|
|
8758
8678
|
createdById: string;
|
|
8759
|
-
createdByName
|
|
8679
|
+
createdByName: string;
|
|
8760
8680
|
updatedBy: string;
|
|
8761
8681
|
updatedById: string;
|
|
8762
|
-
updatedByName
|
|
8763
|
-
updated: Date;
|
|
8682
|
+
updatedByName: string;
|
|
8764
8683
|
isDeleted: boolean;
|
|
8765
8684
|
}
|
|
8766
|
-
export interface SchemaCreatorStateDto {
|
|
8767
|
-
settings: SchemaCreatorSettingsDto;
|
|
8768
|
-
elements: SchemaCreatorElementDto[];
|
|
8769
|
-
}
|
|
8770
|
-
export interface SchemaCreatorSettingsDto {
|
|
8771
|
-
unit?: UnitOfMeasureDto;
|
|
8772
|
-
tolerance?: GeneralToleranceDto;
|
|
8773
|
-
balloonSize?: number;
|
|
8774
|
-
}
|
|
8775
|
-
export type UnitOfMeasureDto = "Millimeter" | "Inch";
|
|
8776
|
-
export type GeneralToleranceDto = "NotSet" | "Fine" | "Medium" | "Coarse" | "VeryCoarse";
|
|
8777
|
-
export interface SchemaCreatorElementDto {
|
|
8778
|
-
id: string;
|
|
8779
|
-
kind: SchemaCreatorElementKindDto;
|
|
8780
|
-
drawings: SchemaCreatorElementDrawingsDto;
|
|
8781
|
-
isDirty?: boolean | null;
|
|
8782
|
-
values?: SchemaCreatorElementValuesDto | null;
|
|
8783
|
-
parseResult?: SchemaCreatorSnipResultDto | null;
|
|
8784
|
-
}
|
|
8785
|
-
export type SchemaCreatorElementKindDto = "Pending" | "Auto" | "Manual";
|
|
8786
|
-
export interface SchemaCreatorElementDrawingsDto {
|
|
8787
|
-
square: SchemaCreatorDrawingDto;
|
|
8788
|
-
circle: SchemaCreatorDrawingDto;
|
|
8789
|
-
textId: string;
|
|
8790
|
-
}
|
|
8791
|
-
export interface SchemaCreatorDrawingDto {
|
|
8792
|
-
rect: SchemaCreatorRectDto;
|
|
8793
|
-
pageIndex: number;
|
|
8794
|
-
annotationId: string;
|
|
8795
|
-
rotation?: number | null;
|
|
8796
|
-
unrotatedRect?: SchemaCreatorRectDto | null;
|
|
8797
|
-
}
|
|
8798
|
-
export interface SchemaCreatorRectDto {
|
|
8799
|
-
origin: SchemaCreatorPointDto;
|
|
8800
|
-
size: SchemaCreatorSizeDto;
|
|
8801
|
-
}
|
|
8802
|
-
export interface SchemaCreatorPointDto {
|
|
8803
|
-
x: number;
|
|
8804
|
-
y: number;
|
|
8805
|
-
}
|
|
8806
|
-
export interface SchemaCreatorSizeDto {
|
|
8807
|
-
width: number;
|
|
8808
|
-
height: number;
|
|
8809
|
-
}
|
|
8810
|
-
export interface SchemaCreatorElementValuesDto {
|
|
8811
|
-
reference: number;
|
|
8812
|
-
nominal?: number | null;
|
|
8813
|
-
nominalText?: string | null;
|
|
8814
|
-
plusTolerance?: number | null;
|
|
8815
|
-
minusTolerance?: number | null;
|
|
8816
|
-
coatingThickness?: number | null;
|
|
8817
|
-
measurementFrequency: MeasurementFrequency;
|
|
8818
|
-
measurementFrequencyParameter?: number | null;
|
|
8819
|
-
type?: string | null;
|
|
8820
|
-
count?: number | null;
|
|
8821
|
-
comment?: string | null;
|
|
8822
|
-
canCopy: boolean;
|
|
8823
|
-
visibleToCustomer: boolean;
|
|
8824
|
-
isDocumentedExternally: boolean;
|
|
8825
|
-
}
|
|
8826
|
-
export type MeasurementFrequency = "All" | "FirstArticle" | "NFirst" | "NPercent" | "ISO2859" | "Nth" | "FirstAndLast" | "None";
|
|
8827
|
-
export interface SchemaCreatorSnipResultDto {
|
|
8828
|
-
nominal?: number | null;
|
|
8829
|
-
nominalText?: string | null;
|
|
8830
|
-
plusTolerance?: number | null;
|
|
8831
|
-
minusTolerance?: number | null;
|
|
8832
|
-
coatingThickness?: number | null;
|
|
8833
|
-
count?: number | null;
|
|
8834
|
-
}
|
|
8835
8685
|
export interface MeasurementFormSchemaDto {
|
|
8836
8686
|
id: string;
|
|
8837
8687
|
versionId: number;
|
|
@@ -8863,7 +8713,9 @@ export interface MeasurementFormSchemaDto {
|
|
|
8863
8713
|
}
|
|
8864
8714
|
export type MeasurementFormStatus = "Draft" | "Released" | "Revoked";
|
|
8865
8715
|
export type MeasurementFormSource = "Unknown" | "InspectionXpert" | "Excel" | "Manual";
|
|
8716
|
+
export type UnitOfMeasureDto = "Millimeter" | "Inch";
|
|
8866
8717
|
export type DimensionSettingDto = "Tolerance" | "MinMaxDimension";
|
|
8718
|
+
export type GeneralToleranceDto = "NotSet" | "Fine" | "Medium" | "Coarse" | "VeryCoarse";
|
|
8867
8719
|
export interface MeasurementFormSchemaAttachmentDto {
|
|
8868
8720
|
url: string;
|
|
8869
8721
|
title: string;
|
|
@@ -8912,6 +8764,7 @@ export interface MeasurementFormGroupedElementDto {
|
|
|
8912
8764
|
isValid: boolean;
|
|
8913
8765
|
validationErrorMessage?: string | null;
|
|
8914
8766
|
}
|
|
8767
|
+
export type MeasurementFrequency = "All" | "FirstArticle" | "NFirst" | "NPercent" | "ISO2859" | "Nth" | "FirstAndLast" | "None";
|
|
8915
8768
|
export type MeasurementFormValueType = "None" | "Bool" | "Decimal" | "String";
|
|
8916
8769
|
export type BonusType = "None" | "Positive" | "PositiveAndNegative";
|
|
8917
8770
|
export interface MeasurementFormLinkedSchemaDto {
|