@ignos/api-client 20260811.217.1 → 20260811.218.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/ignosportal-api.d.ts +14 -6
- package/package.json +1 -1
- package/src/ignosportal-api.ts +15 -7
package/lib/ignosportal-api.d.ts
CHANGED
|
@@ -7423,7 +7423,11 @@ export interface PlannerOperationDto {
|
|
|
7423
7423
|
operationName: string;
|
|
7424
7424
|
plannedStart: Date;
|
|
7425
7425
|
plannedEnd?: Date | null;
|
|
7426
|
+
actualStart?: Date | null;
|
|
7427
|
+
actualEnd?: Date | null;
|
|
7426
7428
|
status: OperationStatusDto;
|
|
7429
|
+
productionStatus: OperationStatusDto;
|
|
7430
|
+
setupStatus?: OperationStatusDto | null;
|
|
7427
7431
|
resourceId: string;
|
|
7428
7432
|
resourceName: string;
|
|
7429
7433
|
resourceDepartmentNumber?: string | null;
|
|
@@ -7435,13 +7439,11 @@ export interface PlannerOperationDto {
|
|
|
7435
7439
|
producedQuantity: number;
|
|
7436
7440
|
totalPlannedHours?: number;
|
|
7437
7441
|
totalUsedHours?: number;
|
|
7442
|
+
usedSetupHours?: number | null;
|
|
7443
|
+
plannedSetupHours?: number | null;
|
|
7444
|
+
usedProductionHours?: number;
|
|
7438
7445
|
customerName?: string | null;
|
|
7439
7446
|
project?: WorkOrderProjectDto | null;
|
|
7440
|
-
sequenceNumber: number;
|
|
7441
|
-
isManuallyLocked: boolean;
|
|
7442
|
-
lockType: PlannerLockType;
|
|
7443
|
-
isNewOperation: boolean;
|
|
7444
|
-
weekGroup: string;
|
|
7445
7447
|
programStatus?: ProgramStatus | null;
|
|
7446
7448
|
hasNotes?: boolean;
|
|
7447
7449
|
notesUnread?: boolean;
|
|
@@ -7452,8 +7454,13 @@ export interface PlannerOperationDto {
|
|
|
7452
7454
|
drawing?: DrawingDto | null;
|
|
7453
7455
|
drawingNumber?: string | null;
|
|
7454
7456
|
description?: string | null;
|
|
7457
|
+
disableSetupRegistration?: boolean;
|
|
7458
|
+
sequenceNumber: number;
|
|
7459
|
+
isManuallyLocked: boolean;
|
|
7460
|
+
lockType: PlannerLockType;
|
|
7461
|
+
isNewOperation: boolean;
|
|
7462
|
+
weekGroup: string;
|
|
7455
7463
|
}
|
|
7456
|
-
export type PlannerLockType = "None" | "Manual" | "Auto";
|
|
7457
7464
|
export type ProgramStatus = "Blank" | "NotOk" | "Ok";
|
|
7458
7465
|
export interface OperationPrerequisitesDto {
|
|
7459
7466
|
drawing?: boolean | null;
|
|
@@ -7476,6 +7483,7 @@ export interface DrawingFileDto {
|
|
|
7476
7483
|
name: string;
|
|
7477
7484
|
comment?: string;
|
|
7478
7485
|
}
|
|
7486
|
+
export type PlannerLockType = "None" | "Manual" | "Auto";
|
|
7479
7487
|
export interface WeekCapacityDto {
|
|
7480
7488
|
weekGroup: string;
|
|
7481
7489
|
weekStart: Date;
|
package/package.json
CHANGED
package/src/ignosportal-api.ts
CHANGED
|
@@ -35780,7 +35780,11 @@ export interface PlannerOperationDto {
|
|
|
35780
35780
|
operationName: string;
|
|
35781
35781
|
plannedStart: Date;
|
|
35782
35782
|
plannedEnd?: Date | null;
|
|
35783
|
+
actualStart?: Date | null;
|
|
35784
|
+
actualEnd?: Date | null;
|
|
35783
35785
|
status: OperationStatusDto;
|
|
35786
|
+
productionStatus: OperationStatusDto;
|
|
35787
|
+
setupStatus?: OperationStatusDto | null;
|
|
35784
35788
|
resourceId: string;
|
|
35785
35789
|
resourceName: string;
|
|
35786
35790
|
resourceDepartmentNumber?: string | null;
|
|
@@ -35792,13 +35796,11 @@ export interface PlannerOperationDto {
|
|
|
35792
35796
|
producedQuantity: number;
|
|
35793
35797
|
totalPlannedHours?: number;
|
|
35794
35798
|
totalUsedHours?: number;
|
|
35799
|
+
usedSetupHours?: number | null;
|
|
35800
|
+
plannedSetupHours?: number | null;
|
|
35801
|
+
usedProductionHours?: number;
|
|
35795
35802
|
customerName?: string | null;
|
|
35796
35803
|
project?: WorkOrderProjectDto | null;
|
|
35797
|
-
sequenceNumber: number;
|
|
35798
|
-
isManuallyLocked: boolean;
|
|
35799
|
-
lockType: PlannerLockType;
|
|
35800
|
-
isNewOperation: boolean;
|
|
35801
|
-
weekGroup: string;
|
|
35802
35804
|
programStatus?: ProgramStatus | null;
|
|
35803
35805
|
hasNotes?: boolean;
|
|
35804
35806
|
notesUnread?: boolean;
|
|
@@ -35809,10 +35811,14 @@ export interface PlannerOperationDto {
|
|
|
35809
35811
|
drawing?: DrawingDto | null;
|
|
35810
35812
|
drawingNumber?: string | null;
|
|
35811
35813
|
description?: string | null;
|
|
35814
|
+
disableSetupRegistration?: boolean;
|
|
35815
|
+
sequenceNumber: number;
|
|
35816
|
+
isManuallyLocked: boolean;
|
|
35817
|
+
lockType: PlannerLockType;
|
|
35818
|
+
isNewOperation: boolean;
|
|
35819
|
+
weekGroup: string;
|
|
35812
35820
|
}
|
|
35813
35821
|
|
|
35814
|
-
export type PlannerLockType = "None" | "Manual" | "Auto";
|
|
35815
|
-
|
|
35816
35822
|
export type ProgramStatus = "Blank" | "NotOk" | "Ok";
|
|
35817
35823
|
|
|
35818
35824
|
export interface OperationPrerequisitesDto {
|
|
@@ -35841,6 +35847,8 @@ export interface DrawingFileDto {
|
|
|
35841
35847
|
comment?: string;
|
|
35842
35848
|
}
|
|
35843
35849
|
|
|
35850
|
+
export type PlannerLockType = "None" | "Manual" | "Auto";
|
|
35851
|
+
|
|
35844
35852
|
export interface WeekCapacityDto {
|
|
35845
35853
|
weekGroup: string;
|
|
35846
35854
|
weekStart: Date;
|