@ignos/api-client 20260714.184.1-alpha → 20260715.185.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.
@@ -9746,17 +9746,20 @@ export interface WorkorderDiscussionMessageDto {
9746
9746
  operationName?: string | null;
9747
9747
  resourceId?: string | null;
9748
9748
  created?: Date;
9749
+ visibility?: DiscussionVisibility;
9749
9750
  }
9750
9751
  export interface WorkOrderDiscussionContent {
9751
9752
  type?: WorkOrderDiscussionContentType;
9752
9753
  value?: string;
9753
9754
  }
9754
9755
  export type WorkOrderDiscussionContentType = 0 | 1;
9756
+ export type DiscussionVisibility = "Public" | "Planner";
9755
9757
  export interface AddDiscussionMessageRequest {
9756
9758
  message: string;
9757
9759
  operationId?: string | null;
9758
9760
  operationName?: string | null;
9759
9761
  resourceId?: string | null;
9762
+ visibility?: DiscussionVisibility;
9760
9763
  }
9761
9764
  export interface WorkorderDiscussionReadStatusDto {
9762
9765
  workorderId: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ignos/api-client",
3
- "version": "20260714.184.1-alpha",
3
+ "version": "20260715.185.1-alpha",
4
4
  "description": "IGNOS API Client",
5
5
  "type": "module",
6
6
  "main": "lib/index.js",
@@ -37813,6 +37813,7 @@ export interface WorkorderDiscussionMessageDto {
37813
37813
  operationName?: string | null;
37814
37814
  resourceId?: string | null;
37815
37815
  created?: Date;
37816
+ visibility?: DiscussionVisibility;
37816
37817
  }
37817
37818
 
37818
37819
  export interface WorkOrderDiscussionContent {
@@ -37822,11 +37823,14 @@ export interface WorkOrderDiscussionContent {
37822
37823
 
37823
37824
  export type WorkOrderDiscussionContentType = 0 | 1;
37824
37825
 
37826
+ export type DiscussionVisibility = "Public" | "Planner";
37827
+
37825
37828
  export interface AddDiscussionMessageRequest {
37826
37829
  message: string;
37827
37830
  operationId?: string | null;
37828
37831
  operationName?: string | null;
37829
37832
  resourceId?: string | null;
37833
+ visibility?: DiscussionVisibility;
37830
37834
  }
37831
37835
 
37832
37836
  export interface WorkorderDiscussionReadStatusDto {