@ignos/api-client 20240513.0.9268 → 20240514.0.9274
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
|
@@ -3673,6 +3673,7 @@ export declare class TraceDto implements ITraceDto {
|
|
|
3673
3673
|
overrideMaterialDetails: TraceMaterialDetailDto[];
|
|
3674
3674
|
operations: WorkOrderTraceOperationDto[];
|
|
3675
3675
|
traceType: TraceType;
|
|
3676
|
+
traceStatus: TraceStatus;
|
|
3676
3677
|
manualCompleted: boolean;
|
|
3677
3678
|
materialLinesMissingTraceInformation: number[];
|
|
3678
3679
|
constructor(data?: ITraceDto);
|
|
@@ -3690,6 +3691,7 @@ export interface ITraceDto {
|
|
|
3690
3691
|
overrideMaterialDetails: TraceMaterialDetailDto[];
|
|
3691
3692
|
operations: WorkOrderTraceOperationDto[];
|
|
3692
3693
|
traceType: TraceType;
|
|
3694
|
+
traceStatus: TraceStatus;
|
|
3693
3695
|
manualCompleted: boolean;
|
|
3694
3696
|
materialLinesMissingTraceInformation: number[];
|
|
3695
3697
|
}
|
|
@@ -3918,6 +3920,7 @@ export interface IMaterialConsumptionDto {
|
|
|
3918
3920
|
label: string;
|
|
3919
3921
|
reference?: string | null;
|
|
3920
3922
|
}
|
|
3923
|
+
export type TraceStatus = "None" | "Unavailable" | "NotNeeded" | "Partial" | "Completed";
|
|
3921
3924
|
export declare class UpdateTraceRequest implements IUpdateTraceRequest {
|
|
3922
3925
|
items: TraceItemDto[];
|
|
3923
3926
|
constructor(data?: IUpdateTraceRequest);
|
|
@@ -3986,7 +3989,6 @@ export interface ICustomerOrderLineWorkOrderTraceStatusNodeDto {
|
|
|
3986
3989
|
traceStatus: TraceStatus;
|
|
3987
3990
|
workOrders?: CustomerOrderLineWorkOrderTraceStatusNodeDto[];
|
|
3988
3991
|
}
|
|
3989
|
-
export type TraceStatus = "None" | "Unavailable" | "NotNeeded" | "Partial" | "Completed";
|
|
3990
3992
|
export declare class PagedResultOfTraceWorkOrderListDto implements IPagedResultOfTraceWorkOrderListDto {
|
|
3991
3993
|
results: TraceWorkOrderListDto[];
|
|
3992
3994
|
continuationToken?: string | null;
|
package/lib/ignosportal-api.js
CHANGED
|
@@ -21230,6 +21230,7 @@ export class TraceDto {
|
|
|
21230
21230
|
this.operations.push(WorkOrderTraceOperationDto.fromJS(item));
|
|
21231
21231
|
}
|
|
21232
21232
|
this.traceType = _data["traceType"];
|
|
21233
|
+
this.traceStatus = _data["traceStatus"];
|
|
21233
21234
|
this.manualCompleted = _data["manualCompleted"];
|
|
21234
21235
|
if (Array.isArray(_data["materialLinesMissingTraceInformation"])) {
|
|
21235
21236
|
this.materialLinesMissingTraceInformation = [];
|
|
@@ -21267,6 +21268,7 @@ export class TraceDto {
|
|
|
21267
21268
|
data["operations"].push(item.toJSON());
|
|
21268
21269
|
}
|
|
21269
21270
|
data["traceType"] = this.traceType;
|
|
21271
|
+
data["traceStatus"] = this.traceStatus;
|
|
21270
21272
|
data["manualCompleted"] = this.manualCompleted;
|
|
21271
21273
|
if (Array.isArray(this.materialLinesMissingTraceInformation)) {
|
|
21272
21274
|
data["materialLinesMissingTraceInformation"] = [];
|
package/package.json
CHANGED
package/src/ignosportal-api.ts
CHANGED
|
@@ -23897,6 +23897,7 @@ export class TraceDto implements ITraceDto {
|
|
|
23897
23897
|
overrideMaterialDetails!: TraceMaterialDetailDto[];
|
|
23898
23898
|
operations!: WorkOrderTraceOperationDto[];
|
|
23899
23899
|
traceType!: TraceType;
|
|
23900
|
+
traceStatus!: TraceStatus;
|
|
23900
23901
|
manualCompleted!: boolean;
|
|
23901
23902
|
materialLinesMissingTraceInformation!: number[];
|
|
23902
23903
|
|
|
@@ -23940,6 +23941,7 @@ export class TraceDto implements ITraceDto {
|
|
|
23940
23941
|
this.operations!.push(WorkOrderTraceOperationDto.fromJS(item));
|
|
23941
23942
|
}
|
|
23942
23943
|
this.traceType = _data["traceType"];
|
|
23944
|
+
this.traceStatus = _data["traceStatus"];
|
|
23943
23945
|
this.manualCompleted = _data["manualCompleted"];
|
|
23944
23946
|
if (Array.isArray(_data["materialLinesMissingTraceInformation"])) {
|
|
23945
23947
|
this.materialLinesMissingTraceInformation = [] as any;
|
|
@@ -23979,6 +23981,7 @@ export class TraceDto implements ITraceDto {
|
|
|
23979
23981
|
data["operations"].push(item.toJSON());
|
|
23980
23982
|
}
|
|
23981
23983
|
data["traceType"] = this.traceType;
|
|
23984
|
+
data["traceStatus"] = this.traceStatus;
|
|
23982
23985
|
data["manualCompleted"] = this.manualCompleted;
|
|
23983
23986
|
if (Array.isArray(this.materialLinesMissingTraceInformation)) {
|
|
23984
23987
|
data["materialLinesMissingTraceInformation"] = [];
|
|
@@ -23999,6 +24002,7 @@ export interface ITraceDto {
|
|
|
23999
24002
|
overrideMaterialDetails: TraceMaterialDetailDto[];
|
|
24000
24003
|
operations: WorkOrderTraceOperationDto[];
|
|
24001
24004
|
traceType: TraceType;
|
|
24005
|
+
traceStatus: TraceStatus;
|
|
24002
24006
|
manualCompleted: boolean;
|
|
24003
24007
|
materialLinesMissingTraceInformation: number[];
|
|
24004
24008
|
}
|
|
@@ -24662,6 +24666,8 @@ export interface IMaterialConsumptionDto {
|
|
|
24662
24666
|
reference?: string | null;
|
|
24663
24667
|
}
|
|
24664
24668
|
|
|
24669
|
+
export type TraceStatus = "None" | "Unavailable" | "NotNeeded" | "Partial" | "Completed";
|
|
24670
|
+
|
|
24665
24671
|
export class UpdateTraceRequest implements IUpdateTraceRequest {
|
|
24666
24672
|
items!: TraceItemDto[];
|
|
24667
24673
|
|
|
@@ -24923,8 +24929,6 @@ export interface ICustomerOrderLineWorkOrderTraceStatusNodeDto {
|
|
|
24923
24929
|
workOrders?: CustomerOrderLineWorkOrderTraceStatusNodeDto[];
|
|
24924
24930
|
}
|
|
24925
24931
|
|
|
24926
|
-
export type TraceStatus = "None" | "Unavailable" | "NotNeeded" | "Partial" | "Completed";
|
|
24927
|
-
|
|
24928
24932
|
export class PagedResultOfTraceWorkOrderListDto implements IPagedResultOfTraceWorkOrderListDto {
|
|
24929
24933
|
results!: TraceWorkOrderListDto[];
|
|
24930
24934
|
continuationToken?: string | null;
|