@ignos/api-client 20260607.147.1 → 20260608.148.1
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
|
@@ -4223,6 +4223,9 @@ export interface ShiftSettingsPeriodDto {
|
|
|
4223
4223
|
effectiveTo?: string | null;
|
|
4224
4224
|
targetPercent: number;
|
|
4225
4225
|
comment?: string | null;
|
|
4226
|
+
hoursPerWeekday: {
|
|
4227
|
+
[key in DayOfWeek]?: number;
|
|
4228
|
+
};
|
|
4226
4229
|
}
|
|
4227
4230
|
export interface AddShiftSettingPeriods {
|
|
4228
4231
|
resourceExternalIds: string[];
|
|
@@ -4369,7 +4372,6 @@ export interface PartDto {
|
|
|
4369
4372
|
drawingRevision?: string | null;
|
|
4370
4373
|
material?: string | null;
|
|
4371
4374
|
planner?: UserDto | null;
|
|
4372
|
-
documentRequirements?: string[] | null;
|
|
4373
4375
|
}
|
|
4374
4376
|
export interface WorkorderCustomerOrderReferenceDto {
|
|
4375
4377
|
customerOrder?: string | null;
|
|
@@ -7684,6 +7686,7 @@ export interface WorkorderDto {
|
|
|
7684
7686
|
project?: WorkOrderProjectDto | null;
|
|
7685
7687
|
planner?: UserDto | null;
|
|
7686
7688
|
projectLeader?: UserDto | null;
|
|
7689
|
+
documentRequirements?: string[];
|
|
7687
7690
|
}
|
|
7688
7691
|
export interface WorkorderOperationDto {
|
|
7689
7692
|
operation: number;
|
|
@@ -7715,6 +7718,7 @@ export interface WorkorderMaterialDto {
|
|
|
7715
7718
|
usedQuantity: number;
|
|
7716
7719
|
unit: string;
|
|
7717
7720
|
traceType: TraceType;
|
|
7721
|
+
documentRequirements?: string[];
|
|
7718
7722
|
}
|
|
7719
7723
|
export interface ListOrderScheduleRequest {
|
|
7720
7724
|
projectId?: string | null;
|
|
@@ -8403,7 +8407,6 @@ export interface Part {
|
|
|
8403
8407
|
drawingReference?: string | null;
|
|
8404
8408
|
material?: string | null;
|
|
8405
8409
|
planner?: User | null;
|
|
8406
|
-
documentRequirements?: string[];
|
|
8407
8410
|
}
|
|
8408
8411
|
export interface User {
|
|
8409
8412
|
id?: string | null;
|
|
@@ -9392,7 +9395,8 @@ export interface CustomerOrderLineDto {
|
|
|
9392
9395
|
status: CustomerOrderLineStatus;
|
|
9393
9396
|
part: PartDto;
|
|
9394
9397
|
deliveryDate?: Date | null;
|
|
9395
|
-
|
|
9398
|
+
workorderHierarchy: WorkorderHierarchyDto[];
|
|
9399
|
+
workorderHiearchy?: WorkorderHierarchyDto[] | null;
|
|
9396
9400
|
}
|
|
9397
9401
|
export type CustomerOrderLineStatus = "Draft" | "Ready" | "Ongoing" | "Completed" | "Deleted";
|
|
9398
9402
|
export interface WorkorderHierarchyDto {
|
|
@@ -9490,6 +9494,7 @@ export interface UpsertWorkorderV2 {
|
|
|
9490
9494
|
endDate?: Date | null;
|
|
9491
9495
|
bomPosition?: string | null;
|
|
9492
9496
|
traceType?: TraceType | null;
|
|
9497
|
+
documentRequirements?: string[];
|
|
9493
9498
|
}
|
|
9494
9499
|
export interface UpsertWorkOrderConsumptionsRequest {
|
|
9495
9500
|
materialConsumptions: MaterialConsumptionDto[];
|
package/package.json
CHANGED
package/src/ignosportal-api.ts
CHANGED
|
@@ -31196,6 +31196,7 @@ export interface ShiftSettingsPeriodDto {
|
|
|
31196
31196
|
effectiveTo?: string | null;
|
|
31197
31197
|
targetPercent: number;
|
|
31198
31198
|
comment?: string | null;
|
|
31199
|
+
hoursPerWeekday: { [key in DayOfWeek]?: number; };
|
|
31199
31200
|
}
|
|
31200
31201
|
|
|
31201
31202
|
export interface AddShiftSettingPeriods {
|
|
@@ -31366,7 +31367,6 @@ export interface PartDto {
|
|
|
31366
31367
|
drawingRevision?: string | null;
|
|
31367
31368
|
material?: string | null;
|
|
31368
31369
|
planner?: UserDto | null;
|
|
31369
|
-
documentRequirements?: string[] | null;
|
|
31370
31370
|
}
|
|
31371
31371
|
|
|
31372
31372
|
export interface WorkorderCustomerOrderReferenceDto {
|
|
@@ -35137,6 +35137,7 @@ export interface WorkorderDto {
|
|
|
35137
35137
|
project?: WorkOrderProjectDto | null;
|
|
35138
35138
|
planner?: UserDto | null;
|
|
35139
35139
|
projectLeader?: UserDto | null;
|
|
35140
|
+
documentRequirements?: string[];
|
|
35140
35141
|
}
|
|
35141
35142
|
|
|
35142
35143
|
export interface WorkorderOperationDto {
|
|
@@ -35170,6 +35171,7 @@ export interface WorkorderMaterialDto {
|
|
|
35170
35171
|
usedQuantity: number;
|
|
35171
35172
|
unit: string;
|
|
35172
35173
|
traceType: TraceType;
|
|
35174
|
+
documentRequirements?: string[];
|
|
35173
35175
|
}
|
|
35174
35176
|
|
|
35175
35177
|
export interface ListOrderScheduleRequest {
|
|
@@ -35948,7 +35950,6 @@ export interface Part {
|
|
|
35948
35950
|
drawingReference?: string | null;
|
|
35949
35951
|
material?: string | null;
|
|
35950
35952
|
planner?: User | null;
|
|
35951
|
-
documentRequirements?: string[];
|
|
35952
35953
|
}
|
|
35953
35954
|
|
|
35954
35955
|
export interface User {
|
|
@@ -37063,7 +37064,8 @@ export interface CustomerOrderLineDto {
|
|
|
37063
37064
|
status: CustomerOrderLineStatus;
|
|
37064
37065
|
part: PartDto;
|
|
37065
37066
|
deliveryDate?: Date | null;
|
|
37066
|
-
|
|
37067
|
+
workorderHierarchy: WorkorderHierarchyDto[];
|
|
37068
|
+
workorderHiearchy?: WorkorderHierarchyDto[] | null;
|
|
37067
37069
|
}
|
|
37068
37070
|
|
|
37069
37071
|
export type CustomerOrderLineStatus = "Draft" | "Ready" | "Ongoing" | "Completed" | "Deleted";
|
|
@@ -37177,6 +37179,7 @@ export interface UpsertWorkorderV2 {
|
|
|
37177
37179
|
endDate?: Date | null;
|
|
37178
37180
|
bomPosition?: string | null;
|
|
37179
37181
|
traceType?: TraceType | null;
|
|
37182
|
+
documentRequirements?: string[];
|
|
37180
37183
|
}
|
|
37181
37184
|
|
|
37182
37185
|
export interface UpsertWorkOrderConsumptionsRequest {
|