@ignos/api-client 20260731.201.1 → 20260803.203.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.
@@ -7425,7 +7425,6 @@ export interface ListProductionOrdersRequest {
7425
7425
  export interface PlannerPlanDto {
7426
7426
  resourceGroupId: string;
7427
7427
  sequence: PlannerOperationDto[];
7428
- lockedCount: number;
7429
7428
  planSavedAt?: Date | null;
7430
7429
  isDraft: boolean;
7431
7430
  publishedETag?: string | null;
@@ -7454,9 +7453,12 @@ export interface PlannerOperationDto {
7454
7453
  project?: WorkOrderProjectDto | null;
7455
7454
  sequenceNumber: number;
7456
7455
  isManuallyLocked: boolean;
7456
+ lockType: PlannerLockType;
7457
+ isNewOperation: boolean;
7457
7458
  weekGroup: string;
7458
7459
  programStatus?: ProgramStatus | null;
7459
7460
  }
7461
+ export type PlannerLockType = "None" | "Manual" | "Auto";
7460
7462
  export type ProgramStatus = "Blank" | "NotOk" | "Ok";
7461
7463
  export interface WeekCapacityDto {
7462
7464
  weekGroup: string;
@@ -7474,7 +7476,6 @@ persisted active plan (draft, else published) is published instead. */
7474
7476
  }
7475
7477
  export interface PlannerSequenceInput {
7476
7478
  orderedOperationKeys: string[];
7477
- lockedCount: number;
7478
7479
  weekGroups?: {
7479
7480
  [key: string]: string;
7480
7481
  } | null;
@@ -7486,7 +7487,6 @@ export interface PlannerPlanEventDto {
7486
7487
  by?: string | null;
7487
7488
  comment?: string | null;
7488
7489
  operationCount: number;
7489
- lockedCount: number;
7490
7490
  }
7491
7491
  export type PlannerEventType = "Published" | "DraftSaved" | "ResetToErp";
7492
7492
  export interface SetProgramStatus {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ignos/api-client",
3
- "version": "20260731.201.1",
3
+ "version": "20260803.203.1",
4
4
  "description": "IGNOS API Client",
5
5
  "type": "module",
6
6
  "main": "lib/index.js",
@@ -35718,7 +35718,6 @@ export interface ListProductionOrdersRequest {
35718
35718
  export interface PlannerPlanDto {
35719
35719
  resourceGroupId: string;
35720
35720
  sequence: PlannerOperationDto[];
35721
- lockedCount: number;
35722
35721
  planSavedAt?: Date | null;
35723
35722
  isDraft: boolean;
35724
35723
  publishedETag?: string | null;
@@ -35748,10 +35747,14 @@ export interface PlannerOperationDto {
35748
35747
  project?: WorkOrderProjectDto | null;
35749
35748
  sequenceNumber: number;
35750
35749
  isManuallyLocked: boolean;
35750
+ lockType: PlannerLockType;
35751
+ isNewOperation: boolean;
35751
35752
  weekGroup: string;
35752
35753
  programStatus?: ProgramStatus | null;
35753
35754
  }
35754
35755
 
35756
+ export type PlannerLockType = "None" | "Manual" | "Auto";
35757
+
35755
35758
  export type ProgramStatus = "Blank" | "NotOk" | "Ok";
35756
35759
 
35757
35760
  export interface WeekCapacityDto {
@@ -35772,7 +35775,6 @@ persisted active plan (draft, else published) is published instead. */
35772
35775
 
35773
35776
  export interface PlannerSequenceInput {
35774
35777
  orderedOperationKeys: string[];
35775
- lockedCount: number;
35776
35778
  weekGroups?: { [key: string]: string; } | null;
35777
35779
  }
35778
35780
 
@@ -35783,7 +35785,6 @@ export interface PlannerPlanEventDto {
35783
35785
  by?: string | null;
35784
35786
  comment?: string | null;
35785
35787
  operationCount: number;
35786
- lockedCount: number;
35787
35788
  }
35788
35789
 
35789
35790
  export type PlannerEventType = "Published" | "DraftSaved" | "ResetToErp";