@ignos/api-client 20260506.122.1 → 20260508.124.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.
package/lib/ignosportal-api.d.ts
CHANGED
|
@@ -4814,6 +4814,9 @@ export interface TraceListItemDto {
|
|
|
4814
4814
|
consumptions: TraceItemConsumptionDto[];
|
|
4815
4815
|
}
|
|
4816
4816
|
export interface TraceItemConsumptionDto {
|
|
4817
|
+
updated?: Date | null;
|
|
4818
|
+
updatedBy?: string | null;
|
|
4819
|
+
updatedById?: string | null;
|
|
4817
4820
|
sourceWorkOrder?: string | null;
|
|
4818
4821
|
sourceSequence?: string | null;
|
|
4819
4822
|
traceNumber?: string | null;
|
package/package.json
CHANGED
package/src/ignosportal-api.ts
CHANGED
|
@@ -31318,6 +31318,9 @@ export interface TraceListItemDto {
|
|
|
31318
31318
|
}
|
|
31319
31319
|
|
|
31320
31320
|
export interface TraceItemConsumptionDto {
|
|
31321
|
+
updated?: Date | null;
|
|
31322
|
+
updatedBy?: string | null;
|
|
31323
|
+
updatedById?: string | null;
|
|
31321
31324
|
sourceWorkOrder?: string | null;
|
|
31322
31325
|
sourceSequence?: string | null;
|
|
31323
31326
|
traceNumber?: string | null;
|