@ignos/api-client 20260508.124.1-alpha → 20260513.126.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.
@@ -4817,6 +4817,7 @@ export interface TraceItemConsumptionDto {
4817
4817
  updated?: Date | null;
4818
4818
  updatedBy?: string | null;
4819
4819
  updatedById?: string | null;
4820
+ updateType?: TraceUpdateType | null;
4820
4821
  sourceWorkOrder?: string | null;
4821
4822
  sourceSequence?: string | null;
4822
4823
  traceNumber?: string | null;
@@ -4827,6 +4828,7 @@ export interface TraceItemConsumptionDto {
4827
4828
  reference?: string | null;
4828
4829
  label: string;
4829
4830
  }
4831
+ export type TraceUpdateType = "None" | "User" | "System";
4830
4832
  export interface TraceMaterialDetailDto {
4831
4833
  materialLine: number;
4832
4834
  operation?: number | null;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ignos/api-client",
3
- "version": "20260508.124.1-alpha",
3
+ "version": "20260513.126.1-alpha",
4
4
  "description": "IGNOS API Client",
5
5
  "type": "module",
6
6
  "main": "lib/index.js",
@@ -31321,6 +31321,7 @@ export interface TraceItemConsumptionDto {
31321
31321
  updated?: Date | null;
31322
31322
  updatedBy?: string | null;
31323
31323
  updatedById?: string | null;
31324
+ updateType?: TraceUpdateType | null;
31324
31325
  sourceWorkOrder?: string | null;
31325
31326
  sourceSequence?: string | null;
31326
31327
  traceNumber?: string | null;
@@ -31332,6 +31333,8 @@ export interface TraceItemConsumptionDto {
31332
31333
  label: string;
31333
31334
  }
31334
31335
 
31336
+ export type TraceUpdateType = "None" | "User" | "System";
31337
+
31335
31338
  export interface TraceMaterialDetailDto {
31336
31339
  materialLine: number;
31337
31340
  operation?: number | null;