@ignos/api-client 20260109.0.13694 → 20260115.0.13741-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 +199 -125
- package/lib/ignosportal-api.js +477 -255
- package/package.json +1 -1
- package/src/ignosportal-api.ts +639 -373
package/lib/ignosportal-api.d.ts
CHANGED
|
@@ -226,7 +226,7 @@ export declare class MachineUtilizationClient extends AuthorizedApiBase implemen
|
|
|
226
226
|
}
|
|
227
227
|
export interface IResourceUtilizationClient {
|
|
228
228
|
/**
|
|
229
|
-
* Get
|
|
229
|
+
* Get resource utilization data. Historic utilizations start from now, whereas the start for current utilization is
|
|
230
230
|
calculated based on startTimeToday or utcOffset. An UTC offset is
|
|
231
231
|
obtained either from startTimeToday, utcOffset or the server's local
|
|
232
232
|
time zone. The current utilization is calculated starting from the start of the current date offset from UTC
|
|
@@ -242,7 +242,7 @@ export interface IResourceUtilizationClient {
|
|
|
242
242
|
getResourceTimelines(id: number, startTime: Date | null | undefined, endTime: Date | null | undefined, filter: TimelineFilterDto | undefined): Promise<TimelinesDto>;
|
|
243
243
|
listMachineStates(id: number, startTime: Date | null | undefined, endTime: Date | null | undefined): Promise<MachineStateDatapoint[]>;
|
|
244
244
|
getMachineStatesSummary(id: number, startTime: Date | null | undefined, endTime: Date | null | undefined): Promise<MachineStatesSummaryDto>;
|
|
245
|
-
listResourceUptimesToday(request: ListResourceUptimesTodayRequest): Promise<
|
|
245
|
+
listResourceUptimesToday(request: ListResourceUptimesTodayRequest): Promise<ResourceUptimesAggregateDto>;
|
|
246
246
|
listPowerOnUtilizationDatapoints(id: number | null | undefined, externalId: string | null | undefined, nDays: number | null | undefined, startTime: Date | null | undefined, endTime: Date | null | undefined): Promise<PowerOnUtilizationList>;
|
|
247
247
|
getFactoryUtilization(): Promise<PowerOnUtilizationDto>;
|
|
248
248
|
getProgramTimeline(id: string, startTime: Date | undefined, endTime: Date | undefined): Promise<ProgramDatapoint[]>;
|
|
@@ -255,7 +255,7 @@ export declare class ResourceUtilizationClient extends AuthorizedApiBase impleme
|
|
|
255
255
|
fetch(url: RequestInfo, init?: RequestInit): Promise<Response>;
|
|
256
256
|
});
|
|
257
257
|
/**
|
|
258
|
-
* Get
|
|
258
|
+
* Get resource utilization data. Historic utilizations start from now, whereas the start for current utilization is
|
|
259
259
|
calculated based on startTimeToday or utcOffset. An UTC offset is
|
|
260
260
|
obtained either from startTimeToday, utcOffset or the server's local
|
|
261
261
|
time zone. The current utilization is calculated starting from the start of the current date offset from UTC
|
|
@@ -276,8 +276,8 @@ export declare class ResourceUtilizationClient extends AuthorizedApiBase impleme
|
|
|
276
276
|
protected processListMachineStates(response: Response): Promise<MachineStateDatapoint[]>;
|
|
277
277
|
getMachineStatesSummary(id: number, startTime: Date | null | undefined, endTime: Date | null | undefined): Promise<MachineStatesSummaryDto>;
|
|
278
278
|
protected processGetMachineStatesSummary(response: Response): Promise<MachineStatesSummaryDto>;
|
|
279
|
-
listResourceUptimesToday(request: ListResourceUptimesTodayRequest): Promise<
|
|
280
|
-
protected processListResourceUptimesToday(response: Response): Promise<
|
|
279
|
+
listResourceUptimesToday(request: ListResourceUptimesTodayRequest): Promise<ResourceUptimesAggregateDto>;
|
|
280
|
+
protected processListResourceUptimesToday(response: Response): Promise<ResourceUptimesAggregateDto>;
|
|
281
281
|
listPowerOnUtilizationDatapoints(id: number | null | undefined, externalId: string | null | undefined, nDays: number | null | undefined, startTime: Date | null | undefined, endTime: Date | null | undefined): Promise<PowerOnUtilizationList>;
|
|
282
282
|
protected processListPowerOnUtilizationDatapoints(response: Response): Promise<PowerOnUtilizationList>;
|
|
283
283
|
getFactoryUtilization(): Promise<PowerOnUtilizationDto>;
|
|
@@ -464,11 +464,11 @@ export interface IResourcesClient {
|
|
|
464
464
|
createResourceGroup(request: CreateResourceGroup): Promise<CreateResourceGroupResponse>;
|
|
465
465
|
updateResourceGroup(id: string, request: UpdateResourceGroup): Promise<void>;
|
|
466
466
|
deleteResourceGroup(id: string): Promise<void>;
|
|
467
|
-
|
|
468
|
-
|
|
469
|
-
|
|
470
|
-
|
|
471
|
-
|
|
467
|
+
listCurrentMachineStates(assetId: number | null | undefined): Promise<MachineStateListDto>;
|
|
468
|
+
listMachineStates(id: number, startTime: Date | null | undefined, endTime: Date | null | undefined): Promise<MachineStateDatapoint[]>;
|
|
469
|
+
listLastDowntimeMachineStates(id: number, endTime: Date | null | undefined, maxStates: number | null | undefined): Promise<DowntimeMachineStateDto[]>;
|
|
470
|
+
getMachineStateWithDowntimePeriods(id: number, timestamp: number | undefined): Promise<DowntimeMachineStateDto>;
|
|
471
|
+
getMachineStatesSummary(id: number, startTime: Date | null | undefined, endTime: Date | null | undefined): Promise<MachineStatesSummaryDto>;
|
|
472
472
|
listResourceErpData(): Promise<ResourceErpDataListDto>;
|
|
473
473
|
getResourceErpData(id: number): Promise<ResourceErpDataDto>;
|
|
474
474
|
getResourceUtilizationSummary(): Promise<UtilizationSummaryDto>;
|
|
@@ -498,16 +498,16 @@ export declare class ResourcesClient extends AuthorizedApiBase implements IResou
|
|
|
498
498
|
protected processUpdateResourceGroup(response: Response): Promise<void>;
|
|
499
499
|
deleteResourceGroup(id: string): Promise<void>;
|
|
500
500
|
protected processDeleteResourceGroup(response: Response): Promise<void>;
|
|
501
|
-
|
|
502
|
-
protected
|
|
503
|
-
|
|
504
|
-
protected
|
|
505
|
-
|
|
506
|
-
protected
|
|
507
|
-
|
|
508
|
-
protected
|
|
509
|
-
|
|
510
|
-
protected
|
|
501
|
+
listCurrentMachineStates(assetId: number | null | undefined): Promise<MachineStateListDto>;
|
|
502
|
+
protected processListCurrentMachineStates(response: Response): Promise<MachineStateListDto>;
|
|
503
|
+
listMachineStates(id: number, startTime: Date | null | undefined, endTime: Date | null | undefined): Promise<MachineStateDatapoint[]>;
|
|
504
|
+
protected processListMachineStates(response: Response): Promise<MachineStateDatapoint[]>;
|
|
505
|
+
listLastDowntimeMachineStates(id: number, endTime: Date | null | undefined, maxStates: number | null | undefined): Promise<DowntimeMachineStateDto[]>;
|
|
506
|
+
protected processListLastDowntimeMachineStates(response: Response): Promise<DowntimeMachineStateDto[]>;
|
|
507
|
+
getMachineStateWithDowntimePeriods(id: number, timestamp: number | undefined): Promise<DowntimeMachineStateDto>;
|
|
508
|
+
protected processGetMachineStateWithDowntimePeriods(response: Response): Promise<DowntimeMachineStateDto>;
|
|
509
|
+
getMachineStatesSummary(id: number, startTime: Date | null | undefined, endTime: Date | null | undefined): Promise<MachineStatesSummaryDto>;
|
|
510
|
+
protected processGetMachineStatesSummary(response: Response): Promise<MachineStatesSummaryDto>;
|
|
511
511
|
listResourceErpData(): Promise<ResourceErpDataListDto>;
|
|
512
512
|
protected processListResourceErpData(response: Response): Promise<ResourceErpDataListDto>;
|
|
513
513
|
getResourceErpData(id: number): Promise<ResourceErpDataDto>;
|
|
@@ -550,9 +550,35 @@ export declare class PulseClient extends AuthorizedApiBase implements IPulseClie
|
|
|
550
550
|
export interface IUtilizationClient {
|
|
551
551
|
getCompanyUtilization(utilizationType: UtilizationTypeDto | undefined, startTime: Date | undefined, endTime: Date | null | undefined, ianaTimeZone: string | null | undefined): Promise<CompanyUtilizationDto>;
|
|
552
552
|
getCrossCompanyUtilization(utilizationType: UtilizationTypeDto | undefined, startTime: Date | undefined, endTime: Date | null | undefined, ianaTimeZone: string | null | undefined): Promise<CrossCompanyUtilizationDto>;
|
|
553
|
+
/**
|
|
554
|
+
* @param utilizationType (optional)
|
|
555
|
+
* @param startTime (optional)
|
|
556
|
+
* @param endTime (optional)
|
|
557
|
+
* @param ianaTimeZone (optional)
|
|
558
|
+
* @param assetId (optional)
|
|
559
|
+
* @param assetExternalId (optional)
|
|
560
|
+
* @deprecated
|
|
561
|
+
*/
|
|
553
562
|
getUtilizationDatapoints(utilizationType: UtilizationTypeDto | undefined, startTime: Date | undefined, endTime: Date | null | undefined, ianaTimeZone: string | null | undefined, assetId: number | null | undefined, assetExternalId: string | null | undefined): Promise<MachineUtilizationDatapointListDto>;
|
|
563
|
+
/**
|
|
564
|
+
* @param utilizationType (optional)
|
|
565
|
+
* @param startTime (optional)
|
|
566
|
+
* @param endTime (optional)
|
|
567
|
+
* @param ianaTimeZone (optional)
|
|
568
|
+
* @deprecated
|
|
569
|
+
*/
|
|
554
570
|
getCompanyUtilizationDatapoints(utilizationType: UtilizationTypeDto | undefined, startTime: Date | undefined, endTime: Date | null | undefined, ianaTimeZone: string | null | undefined): Promise<CompanyUtilizationDatapointListDto>;
|
|
571
|
+
/**
|
|
572
|
+
* @param utilizationType (optional)
|
|
573
|
+
* @param startTime (optional)
|
|
574
|
+
* @param endTime (optional)
|
|
575
|
+
* @param ianaTimeZone (optional)
|
|
576
|
+
* @deprecated
|
|
577
|
+
*/
|
|
555
578
|
getCrossCompanyUtilizationDatapoints(utilizationType: UtilizationTypeDto | undefined, startTime: Date | undefined, endTime: Date | null | undefined, ianaTimeZone: string | null | undefined): Promise<CrossCompanyUtilizationDatapointListDto>;
|
|
579
|
+
getResourceUtilizationDatapoints(utilizationType: UtilizationTypeDto | undefined, startTime: Date | undefined, endTime: Date | null | undefined, ianaTimeZone: string | null | undefined, assetId: number | null | undefined, assetExternalId: string | null | undefined): Promise<ResourceUtilizationDatapointListDto>;
|
|
580
|
+
getCompanyResourceUtilizationDatapoints(utilizationType: UtilizationTypeDto | undefined, startTime: Date | undefined, endTime: Date | null | undefined, ianaTimeZone: string | null | undefined): Promise<CompanyResourceUtilizationDatapointListDto>;
|
|
581
|
+
getCrossCompanyResourceUtilizationDatapoints(utilizationType: UtilizationTypeDto | undefined, startTime: Date | undefined, endTime: Date | null | undefined, ianaTimeZone: string | null | undefined): Promise<CrossCompanyResourceUtilizationDatapointListDto>;
|
|
556
582
|
}
|
|
557
583
|
export declare class UtilizationClient extends AuthorizedApiBase implements IUtilizationClient {
|
|
558
584
|
private http;
|
|
@@ -565,12 +591,41 @@ export declare class UtilizationClient extends AuthorizedApiBase implements IUti
|
|
|
565
591
|
protected processGetCompanyUtilization(response: Response): Promise<CompanyUtilizationDto>;
|
|
566
592
|
getCrossCompanyUtilization(utilizationType: UtilizationTypeDto | undefined, startTime: Date | undefined, endTime: Date | null | undefined, ianaTimeZone: string | null | undefined): Promise<CrossCompanyUtilizationDto>;
|
|
567
593
|
protected processGetCrossCompanyUtilization(response: Response): Promise<CrossCompanyUtilizationDto>;
|
|
594
|
+
/**
|
|
595
|
+
* @param utilizationType (optional)
|
|
596
|
+
* @param startTime (optional)
|
|
597
|
+
* @param endTime (optional)
|
|
598
|
+
* @param ianaTimeZone (optional)
|
|
599
|
+
* @param assetId (optional)
|
|
600
|
+
* @param assetExternalId (optional)
|
|
601
|
+
* @deprecated
|
|
602
|
+
*/
|
|
568
603
|
getUtilizationDatapoints(utilizationType: UtilizationTypeDto | undefined, startTime: Date | undefined, endTime: Date | null | undefined, ianaTimeZone: string | null | undefined, assetId: number | null | undefined, assetExternalId: string | null | undefined): Promise<MachineUtilizationDatapointListDto>;
|
|
569
604
|
protected processGetUtilizationDatapoints(response: Response): Promise<MachineUtilizationDatapointListDto>;
|
|
605
|
+
/**
|
|
606
|
+
* @param utilizationType (optional)
|
|
607
|
+
* @param startTime (optional)
|
|
608
|
+
* @param endTime (optional)
|
|
609
|
+
* @param ianaTimeZone (optional)
|
|
610
|
+
* @deprecated
|
|
611
|
+
*/
|
|
570
612
|
getCompanyUtilizationDatapoints(utilizationType: UtilizationTypeDto | undefined, startTime: Date | undefined, endTime: Date | null | undefined, ianaTimeZone: string | null | undefined): Promise<CompanyUtilizationDatapointListDto>;
|
|
571
613
|
protected processGetCompanyUtilizationDatapoints(response: Response): Promise<CompanyUtilizationDatapointListDto>;
|
|
614
|
+
/**
|
|
615
|
+
* @param utilizationType (optional)
|
|
616
|
+
* @param startTime (optional)
|
|
617
|
+
* @param endTime (optional)
|
|
618
|
+
* @param ianaTimeZone (optional)
|
|
619
|
+
* @deprecated
|
|
620
|
+
*/
|
|
572
621
|
getCrossCompanyUtilizationDatapoints(utilizationType: UtilizationTypeDto | undefined, startTime: Date | undefined, endTime: Date | null | undefined, ianaTimeZone: string | null | undefined): Promise<CrossCompanyUtilizationDatapointListDto>;
|
|
573
622
|
protected processGetCrossCompanyUtilizationDatapoints(response: Response): Promise<CrossCompanyUtilizationDatapointListDto>;
|
|
623
|
+
getResourceUtilizationDatapoints(utilizationType: UtilizationTypeDto | undefined, startTime: Date | undefined, endTime: Date | null | undefined, ianaTimeZone: string | null | undefined, assetId: number | null | undefined, assetExternalId: string | null | undefined): Promise<ResourceUtilizationDatapointListDto>;
|
|
624
|
+
protected processGetResourceUtilizationDatapoints(response: Response): Promise<ResourceUtilizationDatapointListDto>;
|
|
625
|
+
getCompanyResourceUtilizationDatapoints(utilizationType: UtilizationTypeDto | undefined, startTime: Date | undefined, endTime: Date | null | undefined, ianaTimeZone: string | null | undefined): Promise<CompanyResourceUtilizationDatapointListDto>;
|
|
626
|
+
protected processGetCompanyResourceUtilizationDatapoints(response: Response): Promise<CompanyResourceUtilizationDatapointListDto>;
|
|
627
|
+
getCrossCompanyResourceUtilizationDatapoints(utilizationType: UtilizationTypeDto | undefined, startTime: Date | undefined, endTime: Date | null | undefined, ianaTimeZone: string | null | undefined): Promise<CrossCompanyResourceUtilizationDatapointListDto>;
|
|
628
|
+
protected processGetCrossCompanyResourceUtilizationDatapoints(response: Response): Promise<CrossCompanyResourceUtilizationDatapointListDto>;
|
|
574
629
|
}
|
|
575
630
|
export interface IMrbClient {
|
|
576
631
|
listMrbInstances(customerOrder: string | undefined, customerOrderLine: number | null | undefined): Promise<MrbInstanceDto[]>;
|
|
@@ -3490,6 +3545,44 @@ export interface IResourceUtilizationDetailsDto {
|
|
|
3490
3545
|
startTime?: Date | null;
|
|
3491
3546
|
powerOnUtilization?: number | null;
|
|
3492
3547
|
}
|
|
3548
|
+
export declare class ResourceUptimesAggregateDto implements IResourceUptimesAggregateDto {
|
|
3549
|
+
resourceUptimes: ResourceUptimeDto[];
|
|
3550
|
+
sum: ResourceUptimeSumDto;
|
|
3551
|
+
constructor(data?: IResourceUptimesAggregateDto);
|
|
3552
|
+
init(_data?: any): void;
|
|
3553
|
+
static fromJS(data: any): ResourceUptimesAggregateDto;
|
|
3554
|
+
toJSON(data?: any): any;
|
|
3555
|
+
}
|
|
3556
|
+
export interface IResourceUptimesAggregateDto {
|
|
3557
|
+
resourceUptimes: ResourceUptimeDto[];
|
|
3558
|
+
sum: ResourceUptimeSumDto;
|
|
3559
|
+
}
|
|
3560
|
+
export declare class ResourceUptimeDto implements IResourceUptimeDto {
|
|
3561
|
+
assetExternalId: string;
|
|
3562
|
+
percent: number;
|
|
3563
|
+
numberOfSeconds: number;
|
|
3564
|
+
constructor(data?: IResourceUptimeDto);
|
|
3565
|
+
init(_data?: any): void;
|
|
3566
|
+
static fromJS(data: any): ResourceUptimeDto;
|
|
3567
|
+
toJSON(data?: any): any;
|
|
3568
|
+
}
|
|
3569
|
+
export interface IResourceUptimeDto {
|
|
3570
|
+
assetExternalId: string;
|
|
3571
|
+
percent: number;
|
|
3572
|
+
numberOfSeconds: number;
|
|
3573
|
+
}
|
|
3574
|
+
export declare class ResourceUptimeSumDto implements IResourceUptimeSumDto {
|
|
3575
|
+
percent: number;
|
|
3576
|
+
numberOfSeconds: number;
|
|
3577
|
+
constructor(data?: IResourceUptimeSumDto);
|
|
3578
|
+
init(_data?: any): void;
|
|
3579
|
+
static fromJS(data: any): ResourceUptimeSumDto;
|
|
3580
|
+
toJSON(data?: any): any;
|
|
3581
|
+
}
|
|
3582
|
+
export interface IResourceUptimeSumDto {
|
|
3583
|
+
percent: number;
|
|
3584
|
+
numberOfSeconds: number;
|
|
3585
|
+
}
|
|
3493
3586
|
export declare class ListResourceUptimesTodayRequest implements IListResourceUptimesTodayRequest {
|
|
3494
3587
|
resourceExternalIds?: string[] | null;
|
|
3495
3588
|
utcOffset?: number;
|
|
@@ -4263,93 +4356,50 @@ export interface IUpdateResourceGroup {
|
|
|
4263
4356
|
name: string;
|
|
4264
4357
|
machineExternalIds?: string[] | null;
|
|
4265
4358
|
}
|
|
4266
|
-
export declare class
|
|
4267
|
-
|
|
4268
|
-
constructor(data?:
|
|
4359
|
+
export declare class MachineStateListDto implements IMachineStateListDto {
|
|
4360
|
+
machines?: MachineStateDto[] | null;
|
|
4361
|
+
constructor(data?: IMachineStateListDto);
|
|
4269
4362
|
init(_data?: any): void;
|
|
4270
|
-
static fromJS(data: any):
|
|
4363
|
+
static fromJS(data: any): MachineStateListDto;
|
|
4271
4364
|
toJSON(data?: any): any;
|
|
4272
4365
|
}
|
|
4273
|
-
export interface
|
|
4274
|
-
|
|
4366
|
+
export interface IMachineStateListDto {
|
|
4367
|
+
machines?: MachineStateDto[] | null;
|
|
4275
4368
|
}
|
|
4276
|
-
export declare class
|
|
4369
|
+
export declare class MachineStateDto implements IMachineStateDto {
|
|
4277
4370
|
assetId: number;
|
|
4278
4371
|
name: string;
|
|
4279
4372
|
description?: string | null;
|
|
4280
4373
|
state: string;
|
|
4281
|
-
|
|
4374
|
+
machineState: MachineState;
|
|
4282
4375
|
startTime: Date;
|
|
4283
|
-
constructor(data?:
|
|
4376
|
+
constructor(data?: IMachineStateDto);
|
|
4284
4377
|
init(_data?: any): void;
|
|
4285
|
-
static fromJS(data: any):
|
|
4378
|
+
static fromJS(data: any): MachineStateDto;
|
|
4286
4379
|
toJSON(data?: any): any;
|
|
4287
4380
|
}
|
|
4288
|
-
export interface
|
|
4381
|
+
export interface IMachineStateDto {
|
|
4289
4382
|
assetId: number;
|
|
4290
4383
|
name: string;
|
|
4291
4384
|
description?: string | null;
|
|
4292
4385
|
state: string;
|
|
4293
|
-
|
|
4386
|
+
machineState: MachineState;
|
|
4294
4387
|
startTime: Date;
|
|
4295
4388
|
}
|
|
4296
|
-
export
|
|
4297
|
-
|
|
4298
|
-
resourceStateText: string;
|
|
4299
|
-
resourceState: ResourceState;
|
|
4300
|
-
timestamp: number;
|
|
4301
|
-
isDowntime: boolean;
|
|
4302
|
-
downtimePeriodReasons: DowntimePeriodReasonDto[];
|
|
4303
|
-
constructor(data?: IResourceStateDatapoint);
|
|
4304
|
-
init(_data?: any): void;
|
|
4305
|
-
static fromJS(data: any): ResourceStateDatapoint;
|
|
4306
|
-
toJSON(data?: any): any;
|
|
4307
|
-
}
|
|
4308
|
-
export interface IResourceStateDatapoint {
|
|
4309
|
-
resourceStateText: string;
|
|
4310
|
-
resourceState: ResourceState;
|
|
4311
|
-
timestamp: number;
|
|
4312
|
-
isDowntime: boolean;
|
|
4313
|
-
downtimePeriodReasons: DowntimePeriodReasonDto[];
|
|
4314
|
-
}
|
|
4315
|
-
export declare class DowntimeResourceStateDto implements IDowntimeResourceStateDto {
|
|
4316
|
-
datapoint: ResourceStateDatapoint;
|
|
4389
|
+
export declare class DowntimeMachineStateDto implements IDowntimeMachineStateDto {
|
|
4390
|
+
datapoint: MachineStateDatapoint;
|
|
4317
4391
|
startTime: Date;
|
|
4318
4392
|
endTime: Date;
|
|
4319
|
-
constructor(data?:
|
|
4393
|
+
constructor(data?: IDowntimeMachineStateDto);
|
|
4320
4394
|
init(_data?: any): void;
|
|
4321
|
-
static fromJS(data: any):
|
|
4395
|
+
static fromJS(data: any): DowntimeMachineStateDto;
|
|
4322
4396
|
toJSON(data?: any): any;
|
|
4323
4397
|
}
|
|
4324
|
-
export interface
|
|
4325
|
-
datapoint:
|
|
4398
|
+
export interface IDowntimeMachineStateDto {
|
|
4399
|
+
datapoint: MachineStateDatapoint;
|
|
4326
4400
|
startTime: Date;
|
|
4327
4401
|
endTime: Date;
|
|
4328
4402
|
}
|
|
4329
|
-
export declare class ResourceStatesSummaryDto implements IResourceStatesSummaryDto {
|
|
4330
|
-
states: ApplicationResourceStatesStateDto[];
|
|
4331
|
-
constructor(data?: IResourceStatesSummaryDto);
|
|
4332
|
-
init(_data?: any): void;
|
|
4333
|
-
static fromJS(data: any): ResourceStatesSummaryDto;
|
|
4334
|
-
toJSON(data?: any): any;
|
|
4335
|
-
}
|
|
4336
|
-
export interface IResourceStatesSummaryDto {
|
|
4337
|
-
states: ApplicationResourceStatesStateDto[];
|
|
4338
|
-
}
|
|
4339
|
-
export declare class ApplicationResourceStatesStateDto implements IApplicationResourceStatesStateDto {
|
|
4340
|
-
state: string;
|
|
4341
|
-
resourceState: ResourceState;
|
|
4342
|
-
seconds: number;
|
|
4343
|
-
constructor(data?: IApplicationResourceStatesStateDto);
|
|
4344
|
-
init(_data?: any): void;
|
|
4345
|
-
static fromJS(data: any): ApplicationResourceStatesStateDto;
|
|
4346
|
-
toJSON(data?: any): any;
|
|
4347
|
-
}
|
|
4348
|
-
export interface IApplicationResourceStatesStateDto {
|
|
4349
|
-
state: string;
|
|
4350
|
-
resourceState: ResourceState;
|
|
4351
|
-
seconds: number;
|
|
4352
|
-
}
|
|
4353
4403
|
export declare class ResourceErpDataListDto implements IResourceErpDataListDto {
|
|
4354
4404
|
resources: SingleResourceErpDataListDto[];
|
|
4355
4405
|
constructor(data?: IResourceErpDataListDto);
|
|
@@ -5025,6 +5075,70 @@ export interface INamedCompanyUtilizationDatapointListDto extends ICompanyUtiliz
|
|
|
5025
5075
|
companyId: string;
|
|
5026
5076
|
companyName: string;
|
|
5027
5077
|
}
|
|
5078
|
+
export declare class ResourceUtilizationDatapointListDto extends UtilizationDatapointListDto implements IResourceUtilizationDatapointListDto {
|
|
5079
|
+
externalId: string;
|
|
5080
|
+
id: number;
|
|
5081
|
+
name: string;
|
|
5082
|
+
description?: string | null;
|
|
5083
|
+
constructor(data?: IResourceUtilizationDatapointListDto);
|
|
5084
|
+
init(_data?: any): void;
|
|
5085
|
+
static fromJS(data: any): ResourceUtilizationDatapointListDto;
|
|
5086
|
+
toJSON(data?: any): any;
|
|
5087
|
+
}
|
|
5088
|
+
export interface IResourceUtilizationDatapointListDto extends IUtilizationDatapointListDto {
|
|
5089
|
+
externalId: string;
|
|
5090
|
+
id: number;
|
|
5091
|
+
name: string;
|
|
5092
|
+
description?: string | null;
|
|
5093
|
+
}
|
|
5094
|
+
export declare class CompanyResourceUtilizationDatapointListDto extends UtilizationDatapointListDto implements ICompanyResourceUtilizationDatapointListDto {
|
|
5095
|
+
groups?: ResourceGroupUtilizationDatapointListDto[];
|
|
5096
|
+
ungroupedResources?: ResourceUtilizationDatapointListDto[];
|
|
5097
|
+
constructor(data?: ICompanyResourceUtilizationDatapointListDto);
|
|
5098
|
+
init(_data?: any): void;
|
|
5099
|
+
static fromJS(data: any): CompanyResourceUtilizationDatapointListDto;
|
|
5100
|
+
toJSON(data?: any): any;
|
|
5101
|
+
}
|
|
5102
|
+
export interface ICompanyResourceUtilizationDatapointListDto extends IUtilizationDatapointListDto {
|
|
5103
|
+
groups?: ResourceGroupUtilizationDatapointListDto[];
|
|
5104
|
+
ungroupedResources?: ResourceUtilizationDatapointListDto[];
|
|
5105
|
+
}
|
|
5106
|
+
export declare class ResourceGroupUtilizationDatapointListDto extends UtilizationDatapointListDto implements IResourceGroupUtilizationDatapointListDto {
|
|
5107
|
+
groupId: string;
|
|
5108
|
+
groupName: string;
|
|
5109
|
+
resources?: ResourceUtilizationDatapointListDto[];
|
|
5110
|
+
constructor(data?: IResourceGroupUtilizationDatapointListDto);
|
|
5111
|
+
init(_data?: any): void;
|
|
5112
|
+
static fromJS(data: any): ResourceGroupUtilizationDatapointListDto;
|
|
5113
|
+
toJSON(data?: any): any;
|
|
5114
|
+
}
|
|
5115
|
+
export interface IResourceGroupUtilizationDatapointListDto extends IUtilizationDatapointListDto {
|
|
5116
|
+
groupId: string;
|
|
5117
|
+
groupName: string;
|
|
5118
|
+
resources?: ResourceUtilizationDatapointListDto[];
|
|
5119
|
+
}
|
|
5120
|
+
export declare class CrossCompanyResourceUtilizationDatapointListDto extends UtilizationDatapointListDto implements ICrossCompanyResourceUtilizationDatapointListDto {
|
|
5121
|
+
companies?: NamedCompanyResourceUtilizationDatapointListDto[];
|
|
5122
|
+
constructor(data?: ICrossCompanyResourceUtilizationDatapointListDto);
|
|
5123
|
+
init(_data?: any): void;
|
|
5124
|
+
static fromJS(data: any): CrossCompanyResourceUtilizationDatapointListDto;
|
|
5125
|
+
toJSON(data?: any): any;
|
|
5126
|
+
}
|
|
5127
|
+
export interface ICrossCompanyResourceUtilizationDatapointListDto extends IUtilizationDatapointListDto {
|
|
5128
|
+
companies?: NamedCompanyResourceUtilizationDatapointListDto[];
|
|
5129
|
+
}
|
|
5130
|
+
export declare class NamedCompanyResourceUtilizationDatapointListDto extends CompanyResourceUtilizationDatapointListDto implements INamedCompanyResourceUtilizationDatapointListDto {
|
|
5131
|
+
companyId: string;
|
|
5132
|
+
companyName: string;
|
|
5133
|
+
constructor(data?: INamedCompanyResourceUtilizationDatapointListDto);
|
|
5134
|
+
init(_data?: any): void;
|
|
5135
|
+
static fromJS(data: any): NamedCompanyResourceUtilizationDatapointListDto;
|
|
5136
|
+
toJSON(data?: any): any;
|
|
5137
|
+
}
|
|
5138
|
+
export interface INamedCompanyResourceUtilizationDatapointListDto extends ICompanyResourceUtilizationDatapointListDto {
|
|
5139
|
+
companyId: string;
|
|
5140
|
+
companyName: string;
|
|
5141
|
+
}
|
|
5028
5142
|
export declare class MrbInstanceDto implements IMrbInstanceDto {
|
|
5029
5143
|
id: string;
|
|
5030
5144
|
title?: string | null;
|
|
@@ -7258,50 +7372,6 @@ export interface IUpdateMachineGroup {
|
|
|
7258
7372
|
name: string;
|
|
7259
7373
|
machineExternalIds?: string[] | null;
|
|
7260
7374
|
}
|
|
7261
|
-
export declare class MachineStateListDto implements IMachineStateListDto {
|
|
7262
|
-
machines?: MachineStateDto[] | null;
|
|
7263
|
-
constructor(data?: IMachineStateListDto);
|
|
7264
|
-
init(_data?: any): void;
|
|
7265
|
-
static fromJS(data: any): MachineStateListDto;
|
|
7266
|
-
toJSON(data?: any): any;
|
|
7267
|
-
}
|
|
7268
|
-
export interface IMachineStateListDto {
|
|
7269
|
-
machines?: MachineStateDto[] | null;
|
|
7270
|
-
}
|
|
7271
|
-
export declare class MachineStateDto implements IMachineStateDto {
|
|
7272
|
-
assetId: number;
|
|
7273
|
-
name: string;
|
|
7274
|
-
description?: string | null;
|
|
7275
|
-
state: string;
|
|
7276
|
-
machineState: MachineState;
|
|
7277
|
-
startTime: Date;
|
|
7278
|
-
constructor(data?: IMachineStateDto);
|
|
7279
|
-
init(_data?: any): void;
|
|
7280
|
-
static fromJS(data: any): MachineStateDto;
|
|
7281
|
-
toJSON(data?: any): any;
|
|
7282
|
-
}
|
|
7283
|
-
export interface IMachineStateDto {
|
|
7284
|
-
assetId: number;
|
|
7285
|
-
name: string;
|
|
7286
|
-
description?: string | null;
|
|
7287
|
-
state: string;
|
|
7288
|
-
machineState: MachineState;
|
|
7289
|
-
startTime: Date;
|
|
7290
|
-
}
|
|
7291
|
-
export declare class DowntimeMachineStateDto implements IDowntimeMachineStateDto {
|
|
7292
|
-
datapoint: MachineStateDatapoint;
|
|
7293
|
-
startTime: Date;
|
|
7294
|
-
endTime: Date;
|
|
7295
|
-
constructor(data?: IDowntimeMachineStateDto);
|
|
7296
|
-
init(_data?: any): void;
|
|
7297
|
-
static fromJS(data: any): DowntimeMachineStateDto;
|
|
7298
|
-
toJSON(data?: any): any;
|
|
7299
|
-
}
|
|
7300
|
-
export interface IDowntimeMachineStateDto {
|
|
7301
|
-
datapoint: MachineStateDatapoint;
|
|
7302
|
-
startTime: Date;
|
|
7303
|
-
endTime: Date;
|
|
7304
|
-
}
|
|
7305
7375
|
export declare class MachineErpDataListDto implements IMachineErpDataListDto {
|
|
7306
7376
|
machines: SingleMachineErpDataListDto[];
|
|
7307
7377
|
constructor(data?: IMachineErpDataListDto);
|
|
@@ -11254,6 +11324,7 @@ export declare class ProductionOrderDto implements IProductionOrderDto {
|
|
|
11254
11324
|
attachments?: WorkOrderAttachmentDto[] | null;
|
|
11255
11325
|
startDate?: Date | null;
|
|
11256
11326
|
endDate?: Date | null;
|
|
11327
|
+
deliveryDate?: Date | null;
|
|
11257
11328
|
bomPosition?: string | null;
|
|
11258
11329
|
drawing?: DrawingDto | null;
|
|
11259
11330
|
orderReference?: OrderReferenceDto | null;
|
|
@@ -11281,6 +11352,7 @@ export interface IProductionOrderDto {
|
|
|
11281
11352
|
attachments?: WorkOrderAttachmentDto[] | null;
|
|
11282
11353
|
startDate?: Date | null;
|
|
11283
11354
|
endDate?: Date | null;
|
|
11355
|
+
deliveryDate?: Date | null;
|
|
11284
11356
|
bomPosition?: string | null;
|
|
11285
11357
|
drawing?: DrawingDto | null;
|
|
11286
11358
|
orderReference?: OrderReferenceDto | null;
|
|
@@ -14147,6 +14219,7 @@ export interface IValidationRuleDto {
|
|
|
14147
14219
|
export declare class SaveValueResponseDto implements ISaveValueResponseDto {
|
|
14148
14220
|
elementCompleted: boolean;
|
|
14149
14221
|
warning?: string | null;
|
|
14222
|
+
informationText?: string | null;
|
|
14150
14223
|
isOutsideTolerances: boolean;
|
|
14151
14224
|
isCloseToTolerances: boolean;
|
|
14152
14225
|
tools: MeasurementFormToolValueDto[];
|
|
@@ -14158,6 +14231,7 @@ export declare class SaveValueResponseDto implements ISaveValueResponseDto {
|
|
|
14158
14231
|
export interface ISaveValueResponseDto {
|
|
14159
14232
|
elementCompleted: boolean;
|
|
14160
14233
|
warning?: string | null;
|
|
14234
|
+
informationText?: string | null;
|
|
14161
14235
|
isOutsideTolerances: boolean;
|
|
14162
14236
|
isCloseToTolerances: boolean;
|
|
14163
14237
|
tools: MeasurementFormToolValueDto[];
|