@ignos/api-client 20260518.128.1-alpha → 20260519.129.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
|
@@ -3773,6 +3773,7 @@ export interface MoveAppSettings {
|
|
|
3773
3773
|
}
|
|
3774
3774
|
export interface EngageAppSettings {
|
|
3775
3775
|
myResourceGroup?: string;
|
|
3776
|
+
favoriteResourceGroups?: string[] | null;
|
|
3776
3777
|
}
|
|
3777
3778
|
export interface UploadInfoDto {
|
|
3778
3779
|
baseUrl?: string | null;
|
|
@@ -4935,6 +4936,10 @@ export interface TraceListItemDto {
|
|
|
4935
4936
|
consumptions: TraceItemConsumptionDto[];
|
|
4936
4937
|
}
|
|
4937
4938
|
export interface TraceItemConsumptionDto {
|
|
4939
|
+
updated?: Date | null;
|
|
4940
|
+
updatedBy?: string | null;
|
|
4941
|
+
updatedById?: string | null;
|
|
4942
|
+
updateType?: TraceUpdateType | null;
|
|
4938
4943
|
sourceWorkOrder?: string | null;
|
|
4939
4944
|
sourceSequence?: string | null;
|
|
4940
4945
|
traceNumber?: string | null;
|
|
@@ -4945,6 +4950,7 @@ export interface TraceItemConsumptionDto {
|
|
|
4945
4950
|
reference?: string | null;
|
|
4946
4951
|
label: string;
|
|
4947
4952
|
}
|
|
4953
|
+
export type TraceUpdateType = "None" | "User" | "System";
|
|
4948
4954
|
export interface TraceMaterialDetailDto {
|
|
4949
4955
|
materialLine: number;
|
|
4950
4956
|
operation?: number | null;
|
package/package.json
CHANGED
package/src/ignosportal-api.ts
CHANGED
|
@@ -30547,6 +30547,7 @@ export interface MoveAppSettings {
|
|
|
30547
30547
|
|
|
30548
30548
|
export interface EngageAppSettings {
|
|
30549
30549
|
myResourceGroup?: string;
|
|
30550
|
+
favoriteResourceGroups?: string[] | null;
|
|
30550
30551
|
}
|
|
30551
30552
|
|
|
30552
30553
|
export interface UploadInfoDto {
|
|
@@ -31882,6 +31883,10 @@ export interface TraceListItemDto {
|
|
|
31882
31883
|
}
|
|
31883
31884
|
|
|
31884
31885
|
export interface TraceItemConsumptionDto {
|
|
31886
|
+
updated?: Date | null;
|
|
31887
|
+
updatedBy?: string | null;
|
|
31888
|
+
updatedById?: string | null;
|
|
31889
|
+
updateType?: TraceUpdateType | null;
|
|
31885
31890
|
sourceWorkOrder?: string | null;
|
|
31886
31891
|
sourceSequence?: string | null;
|
|
31887
31892
|
traceNumber?: string | null;
|
|
@@ -31893,6 +31898,8 @@ export interface TraceItemConsumptionDto {
|
|
|
31893
31898
|
label: string;
|
|
31894
31899
|
}
|
|
31895
31900
|
|
|
31901
|
+
export type TraceUpdateType = "None" | "User" | "System";
|
|
31902
|
+
|
|
31896
31903
|
export interface TraceMaterialDetailDto {
|
|
31897
31904
|
materialLine: number;
|
|
31898
31905
|
operation?: number | null;
|