@ignos/api-client 20260715.190.1-alpha → 20260723.192.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.
@@ -7393,6 +7393,7 @@ export interface PlannerPlanDto {
7393
7393
  planSavedAt?: Date | null;
7394
7394
  isDraft: boolean;
7395
7395
  publishedETag?: string | null;
7396
+ weeklyCapacities: WeekCapacityDto[];
7396
7397
  }
7397
7398
  export interface PlannerOperationDto {
7398
7399
  id: string;
@@ -7421,6 +7422,11 @@ export interface PlannerOperationDto {
7421
7422
  programStatus?: ProgramStatus | null;
7422
7423
  }
7423
7424
  export type ProgramStatus = "Blank" | "NotOk" | "Ok";
7425
+ export interface WeekCapacityDto {
7426
+ weekGroup: string;
7427
+ weekStart: Date;
7428
+ capacityHours: number;
7429
+ }
7424
7430
  export interface PublishPlanRequest {
7425
7431
  /** ETag of the published plan the caller last read, used for optimistic
7426
7432
  concurrency. Null if the caller never observed a published plan. */
@@ -7437,11 +7443,6 @@ export interface PlannerSequenceInput {
7437
7443
  [key: string]: string;
7438
7444
  } | null;
7439
7445
  }
7440
- export interface WeekCapacityDto {
7441
- weekGroup: string;
7442
- weekStart: Date;
7443
- capacityHours: number;
7444
- }
7445
7446
  export interface PlannerPlanEventDto {
7446
7447
  id: string;
7447
7448
  eventType: PlannerEventType;
@@ -7451,12 +7452,11 @@ export interface PlannerPlanEventDto {
7451
7452
  operationCount: number;
7452
7453
  lockedCount: number;
7453
7454
  }
7454
- export type PlannerEventType = "Published" | "DraftSaved" | "ResetToErp" | "AutoRollover";
7455
+ export type PlannerEventType = "Published" | "DraftSaved" | "ResetToErp";
7455
7456
  export interface SetProgramStatus {
7456
7457
  workOrderId?: string;
7457
7458
  operationNumber?: number;
7458
7459
  status?: ProgramStatus;
7459
- resourceId?: string;
7460
7460
  }
7461
7461
  export type ProductionOrderAttachmentType = "Url" | "Note" | "Image" | "File";
7462
7462
  export interface WorkOrderAttachmentDto {
@@ -9889,20 +9889,20 @@ export interface WorkorderDiscussionMessageDto {
9889
9889
  operationName?: string | null;
9890
9890
  resourceId?: string | null;
9891
9891
  created?: Date;
9892
- visibility?: DiscussionVisibility;
9892
+ messageType?: DiscussionMessageType;
9893
9893
  }
9894
9894
  export interface WorkOrderDiscussionContent {
9895
9895
  type?: WorkOrderDiscussionContentType;
9896
9896
  value?: string;
9897
9897
  }
9898
9898
  export type WorkOrderDiscussionContentType = 0 | 1;
9899
- export type DiscussionVisibility = "Public" | "Planner";
9899
+ export type DiscussionMessageType = "Public" | "Planner";
9900
9900
  export interface AddDiscussionMessageRequest {
9901
9901
  message: string;
9902
9902
  operationId?: string | null;
9903
9903
  operationName?: string | null;
9904
9904
  resourceId?: string | null;
9905
- visibility?: DiscussionVisibility;
9905
+ messageType?: DiscussionMessageType;
9906
9906
  }
9907
9907
  export interface WorkorderDiscussionReadStatusDto {
9908
9908
  workorderId: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ignos/api-client",
3
- "version": "20260715.190.1-alpha",
3
+ "version": "20260723.192.1-alpha",
4
4
  "description": "IGNOS API Client",
5
5
  "type": "module",
6
6
  "main": "lib/index.js",
@@ -35644,6 +35644,7 @@ export interface PlannerPlanDto {
35644
35644
  planSavedAt?: Date | null;
35645
35645
  isDraft: boolean;
35646
35646
  publishedETag?: string | null;
35647
+ weeklyCapacities: WeekCapacityDto[];
35647
35648
  }
35648
35649
 
35649
35650
  export interface PlannerOperationDto {
@@ -35675,6 +35676,12 @@ export interface PlannerOperationDto {
35675
35676
 
35676
35677
  export type ProgramStatus = "Blank" | "NotOk" | "Ok";
35677
35678
 
35679
+ export interface WeekCapacityDto {
35680
+ weekGroup: string;
35681
+ weekStart: Date;
35682
+ capacityHours: number;
35683
+ }
35684
+
35678
35685
  export interface PublishPlanRequest {
35679
35686
  /** ETag of the published plan the caller last read, used for optimistic
35680
35687
  concurrency. Null if the caller never observed a published plan. */
@@ -35691,12 +35698,6 @@ export interface PlannerSequenceInput {
35691
35698
  weekGroups?: { [key: string]: string; } | null;
35692
35699
  }
35693
35700
 
35694
- export interface WeekCapacityDto {
35695
- weekGroup: string;
35696
- weekStart: Date;
35697
- capacityHours: number;
35698
- }
35699
-
35700
35701
  export interface PlannerPlanEventDto {
35701
35702
  id: string;
35702
35703
  eventType: PlannerEventType;
@@ -35707,13 +35708,12 @@ export interface PlannerPlanEventDto {
35707
35708
  lockedCount: number;
35708
35709
  }
35709
35710
 
35710
- export type PlannerEventType = "Published" | "DraftSaved" | "ResetToErp" | "AutoRollover";
35711
+ export type PlannerEventType = "Published" | "DraftSaved" | "ResetToErp";
35711
35712
 
35712
35713
  export interface SetProgramStatus {
35713
35714
  workOrderId?: string;
35714
35715
  operationNumber?: number;
35715
35716
  status?: ProgramStatus;
35716
- resourceId?: string;
35717
35717
  }
35718
35718
 
35719
35719
  export type ProductionOrderAttachmentType = "Url" | "Note" | "Image" | "File";
@@ -38445,7 +38445,7 @@ export interface WorkorderDiscussionMessageDto {
38445
38445
  operationName?: string | null;
38446
38446
  resourceId?: string | null;
38447
38447
  created?: Date;
38448
- visibility?: DiscussionVisibility;
38448
+ messageType?: DiscussionMessageType;
38449
38449
  }
38450
38450
 
38451
38451
  export interface WorkOrderDiscussionContent {
@@ -38455,14 +38455,14 @@ export interface WorkOrderDiscussionContent {
38455
38455
 
38456
38456
  export type WorkOrderDiscussionContentType = 0 | 1;
38457
38457
 
38458
- export type DiscussionVisibility = "Public" | "Planner";
38458
+ export type DiscussionMessageType = "Public" | "Planner";
38459
38459
 
38460
38460
  export interface AddDiscussionMessageRequest {
38461
38461
  message: string;
38462
38462
  operationId?: string | null;
38463
38463
  operationName?: string | null;
38464
38464
  resourceId?: string | null;
38465
- visibility?: DiscussionVisibility;
38465
+ messageType?: DiscussionMessageType;
38466
38466
  }
38467
38467
 
38468
38468
  export interface WorkorderDiscussionReadStatusDto {