@ignos/api-client 20260807.209.1 → 20260807.210.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 +28 -21
- package/package.json +1 -1
- package/src/ignosportal-api.ts +33 -26
package/lib/ignosportal-api.d.ts
CHANGED
|
@@ -7460,9 +7460,37 @@ export interface PlannerOperationDto {
|
|
|
7460
7460
|
programStatus?: ProgramStatus | null;
|
|
7461
7461
|
hasNotes?: boolean;
|
|
7462
7462
|
notesUnread?: boolean;
|
|
7463
|
+
availableToStartQuantity: number;
|
|
7464
|
+
earlierOperationsScrappedQuantity: number;
|
|
7465
|
+
startedQuantity?: number | null;
|
|
7466
|
+
prerequisites: OperationPrerequisitesDto;
|
|
7467
|
+
drawing?: DrawingDto | null;
|
|
7468
|
+
drawingNumber?: string | null;
|
|
7469
|
+
description?: string | null;
|
|
7463
7470
|
}
|
|
7464
7471
|
export type PlannerLockType = "None" | "Manual" | "Auto";
|
|
7465
7472
|
export type ProgramStatus = "Blank" | "NotOk" | "Ok";
|
|
7473
|
+
export interface OperationPrerequisitesDto {
|
|
7474
|
+
drawing?: boolean | null;
|
|
7475
|
+
materials: MaterialsPrerequisiteDto;
|
|
7476
|
+
cncProgram?: boolean | null;
|
|
7477
|
+
}
|
|
7478
|
+
export interface MaterialsPrerequisiteDto {
|
|
7479
|
+
numberOfPartsCoveredByOnHand?: number | null;
|
|
7480
|
+
materialStatus?: MaterialStatusDto;
|
|
7481
|
+
}
|
|
7482
|
+
export type MaterialStatusDto = "NotRequired" | "NotAvailable" | "PartiallyAvailable" | "Available" | "FullyConsumed" | "Unknown";
|
|
7483
|
+
export interface DrawingDto {
|
|
7484
|
+
drawingNumber: string;
|
|
7485
|
+
revision: string;
|
|
7486
|
+
status: string;
|
|
7487
|
+
files: DrawingFileDto[];
|
|
7488
|
+
}
|
|
7489
|
+
export interface DrawingFileDto {
|
|
7490
|
+
id: number;
|
|
7491
|
+
name: string;
|
|
7492
|
+
comment?: string;
|
|
7493
|
+
}
|
|
7466
7494
|
export interface WeekCapacityDto {
|
|
7467
7495
|
weekGroup: string;
|
|
7468
7496
|
weekStart: Date;
|
|
@@ -7567,17 +7595,6 @@ export interface ProductionOrderOperationDto {
|
|
|
7567
7595
|
productionStatus: OperationStatusDto;
|
|
7568
7596
|
setupStatus?: OperationStatusDto | null;
|
|
7569
7597
|
}
|
|
7570
|
-
export interface DrawingDto {
|
|
7571
|
-
drawingNumber: string;
|
|
7572
|
-
revision: string;
|
|
7573
|
-
status: string;
|
|
7574
|
-
files: DrawingFileDto[];
|
|
7575
|
-
}
|
|
7576
|
-
export interface DrawingFileDto {
|
|
7577
|
-
id: number;
|
|
7578
|
-
name: string;
|
|
7579
|
-
comment?: string;
|
|
7580
|
-
}
|
|
7581
7598
|
export interface ProductionOrderBomDto {
|
|
7582
7599
|
position: string;
|
|
7583
7600
|
lineNumber: number;
|
|
@@ -7789,16 +7806,6 @@ export interface SurroundingOperationDto {
|
|
|
7789
7806
|
earlierOperationsScrappedQuantity: number;
|
|
7790
7807
|
startedQuantity?: number | null;
|
|
7791
7808
|
}
|
|
7792
|
-
export interface OperationPrerequisitesDto {
|
|
7793
|
-
drawing?: boolean | null;
|
|
7794
|
-
materials: MaterialsPrerequisiteDto;
|
|
7795
|
-
cncProgram?: boolean | null;
|
|
7796
|
-
}
|
|
7797
|
-
export interface MaterialsPrerequisiteDto {
|
|
7798
|
-
numberOfPartsCoveredByOnHand?: number | null;
|
|
7799
|
-
materialStatus?: MaterialStatusDto;
|
|
7800
|
-
}
|
|
7801
|
-
export type MaterialStatusDto = "NotRequired" | "NotAvailable" | "PartiallyAvailable" | "Available" | "FullyConsumed" | "Unknown";
|
|
7802
7809
|
export type MaterialPickStatus = "NotRequired" | "NotStarted" | "Started" | "Completed" | "Unknown";
|
|
7803
7810
|
export interface ListProductionScheduleOperationsRequest {
|
|
7804
7811
|
resourceGroup?: string | null;
|
package/package.json
CHANGED
package/src/ignosportal-api.ts
CHANGED
|
@@ -35758,12 +35758,45 @@ export interface PlannerOperationDto {
|
|
|
35758
35758
|
programStatus?: ProgramStatus | null;
|
|
35759
35759
|
hasNotes?: boolean;
|
|
35760
35760
|
notesUnread?: boolean;
|
|
35761
|
+
availableToStartQuantity: number;
|
|
35762
|
+
earlierOperationsScrappedQuantity: number;
|
|
35763
|
+
startedQuantity?: number | null;
|
|
35764
|
+
prerequisites: OperationPrerequisitesDto;
|
|
35765
|
+
drawing?: DrawingDto | null;
|
|
35766
|
+
drawingNumber?: string | null;
|
|
35767
|
+
description?: string | null;
|
|
35761
35768
|
}
|
|
35762
35769
|
|
|
35763
35770
|
export type PlannerLockType = "None" | "Manual" | "Auto";
|
|
35764
35771
|
|
|
35765
35772
|
export type ProgramStatus = "Blank" | "NotOk" | "Ok";
|
|
35766
35773
|
|
|
35774
|
+
export interface OperationPrerequisitesDto {
|
|
35775
|
+
drawing?: boolean | null;
|
|
35776
|
+
materials: MaterialsPrerequisiteDto;
|
|
35777
|
+
cncProgram?: boolean | null;
|
|
35778
|
+
}
|
|
35779
|
+
|
|
35780
|
+
export interface MaterialsPrerequisiteDto {
|
|
35781
|
+
numberOfPartsCoveredByOnHand?: number | null;
|
|
35782
|
+
materialStatus?: MaterialStatusDto;
|
|
35783
|
+
}
|
|
35784
|
+
|
|
35785
|
+
export type MaterialStatusDto = "NotRequired" | "NotAvailable" | "PartiallyAvailable" | "Available" | "FullyConsumed" | "Unknown";
|
|
35786
|
+
|
|
35787
|
+
export interface DrawingDto {
|
|
35788
|
+
drawingNumber: string;
|
|
35789
|
+
revision: string;
|
|
35790
|
+
status: string;
|
|
35791
|
+
files: DrawingFileDto[];
|
|
35792
|
+
}
|
|
35793
|
+
|
|
35794
|
+
export interface DrawingFileDto {
|
|
35795
|
+
id: number;
|
|
35796
|
+
name: string;
|
|
35797
|
+
comment?: string;
|
|
35798
|
+
}
|
|
35799
|
+
|
|
35767
35800
|
export interface WeekCapacityDto {
|
|
35768
35801
|
weekGroup: string;
|
|
35769
35802
|
weekStart: Date;
|
|
@@ -35876,19 +35909,6 @@ export interface ProductionOrderOperationDto {
|
|
|
35876
35909
|
setupStatus?: OperationStatusDto | null;
|
|
35877
35910
|
}
|
|
35878
35911
|
|
|
35879
|
-
export interface DrawingDto {
|
|
35880
|
-
drawingNumber: string;
|
|
35881
|
-
revision: string;
|
|
35882
|
-
status: string;
|
|
35883
|
-
files: DrawingFileDto[];
|
|
35884
|
-
}
|
|
35885
|
-
|
|
35886
|
-
export interface DrawingFileDto {
|
|
35887
|
-
id: number;
|
|
35888
|
-
name: string;
|
|
35889
|
-
comment?: string;
|
|
35890
|
-
}
|
|
35891
|
-
|
|
35892
35912
|
export interface ProductionOrderBomDto {
|
|
35893
35913
|
position: string;
|
|
35894
35914
|
lineNumber: number;
|
|
@@ -36117,19 +36137,6 @@ export interface SurroundingOperationDto {
|
|
|
36117
36137
|
startedQuantity?: number | null;
|
|
36118
36138
|
}
|
|
36119
36139
|
|
|
36120
|
-
export interface OperationPrerequisitesDto {
|
|
36121
|
-
drawing?: boolean | null;
|
|
36122
|
-
materials: MaterialsPrerequisiteDto;
|
|
36123
|
-
cncProgram?: boolean | null;
|
|
36124
|
-
}
|
|
36125
|
-
|
|
36126
|
-
export interface MaterialsPrerequisiteDto {
|
|
36127
|
-
numberOfPartsCoveredByOnHand?: number | null;
|
|
36128
|
-
materialStatus?: MaterialStatusDto;
|
|
36129
|
-
}
|
|
36130
|
-
|
|
36131
|
-
export type MaterialStatusDto = "NotRequired" | "NotAvailable" | "PartiallyAvailable" | "Available" | "FullyConsumed" | "Unknown";
|
|
36132
|
-
|
|
36133
36140
|
export type MaterialPickStatus = "NotRequired" | "NotStarted" | "Started" | "Completed" | "Unknown";
|
|
36134
36141
|
|
|
36135
36142
|
export interface ListProductionScheduleOperationsRequest {
|