@ignos/api-client 20250310.0.11331 → 20250311.0.11347

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.
@@ -4683,7 +4683,7 @@ export declare class TraceWorkOrderListDto implements ITraceWorkOrderListDto {
4683
4683
  id: string;
4684
4684
  part: PartDto;
4685
4685
  quantity: number;
4686
- unit?: string;
4686
+ unit?: string | null;
4687
4687
  status: WorkorderStatus;
4688
4688
  plannedStart?: Date | null;
4689
4689
  plannedEnd?: Date | null;
@@ -4699,7 +4699,7 @@ export interface ITraceWorkOrderListDto {
4699
4699
  id: string;
4700
4700
  part: PartDto;
4701
4701
  quantity: number;
4702
- unit?: string;
4702
+ unit?: string | null;
4703
4703
  status: WorkorderStatus;
4704
4704
  plannedStart?: Date | null;
4705
4705
  plannedEnd?: Date | null;
@@ -5930,7 +5930,7 @@ export declare class MachineErpDataDto implements IMachineErpDataDto {
5930
5930
  plannedTime: number;
5931
5931
  usedTime: number;
5932
5932
  startTime: Date;
5933
- unit?: string;
5933
+ unit?: string | null;
5934
5934
  customerOrderReference?: WorkorderCustomerOrderReferenceDto | null;
5935
5935
  workOrderDescription?: string | null;
5936
5936
  operationDescription?: string;
@@ -5950,7 +5950,7 @@ export interface IMachineErpDataDto {
5950
5950
  plannedTime: number;
5951
5951
  usedTime: number;
5952
5952
  startTime: Date;
5953
- unit?: string;
5953
+ unit?: string | null;
5954
5954
  customerOrderReference?: WorkorderCustomerOrderReferenceDto | null;
5955
5955
  workOrderDescription?: string | null;
5956
5956
  operationDescription?: string;
@@ -10534,7 +10534,7 @@ export declare class WorkorderDto implements IWorkorderDto {
10534
10534
  id: string;
10535
10535
  part: PartDto;
10536
10536
  quantity: number;
10537
- unit: string;
10537
+ unit?: string | null;
10538
10538
  status: WorkorderStatus;
10539
10539
  operations: WorkorderOperationDto[];
10540
10540
  plannedStart?: Date | null;
@@ -10554,7 +10554,7 @@ export interface IWorkorderDto {
10554
10554
  id: string;
10555
10555
  part: PartDto;
10556
10556
  quantity: number;
10557
- unit: string;
10557
+ unit?: string | null;
10558
10558
  status: WorkorderStatus;
10559
10559
  operations: WorkorderOperationDto[];
10560
10560
  plannedStart?: Date | null;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ignos/api-client",
3
- "version": "20250310.0.11331",
3
+ "version": "20250311.0.11347",
4
4
  "description": "IGNOS API Client",
5
5
  "type": "module",
6
6
  "main": "lib/index.js",
@@ -29204,7 +29204,7 @@ export class TraceWorkOrderListDto implements ITraceWorkOrderListDto {
29204
29204
  id!: string;
29205
29205
  part!: PartDto;
29206
29206
  quantity!: number;
29207
- unit?: string;
29207
+ unit?: string | null;
29208
29208
  status!: WorkorderStatus;
29209
29209
  plannedStart?: Date | null;
29210
29210
  plannedEnd?: Date | null;
@@ -29266,7 +29266,7 @@ export interface ITraceWorkOrderListDto {
29266
29266
  id: string;
29267
29267
  part: PartDto;
29268
29268
  quantity: number;
29269
- unit?: string;
29269
+ unit?: string | null;
29270
29270
  status: WorkorderStatus;
29271
29271
  plannedStart?: Date | null;
29272
29272
  plannedEnd?: Date | null;
@@ -33119,7 +33119,7 @@ export class MachineErpDataDto implements IMachineErpDataDto {
33119
33119
  plannedTime!: number;
33120
33120
  usedTime!: number;
33121
33121
  startTime!: Date;
33122
- unit?: string;
33122
+ unit?: string | null;
33123
33123
  customerOrderReference?: WorkorderCustomerOrderReferenceDto | null;
33124
33124
  workOrderDescription?: string | null;
33125
33125
  operationDescription?: string;
@@ -33193,7 +33193,7 @@ export interface IMachineErpDataDto {
33193
33193
  plannedTime: number;
33194
33194
  usedTime: number;
33195
33195
  startTime: Date;
33196
- unit?: string;
33196
+ unit?: string | null;
33197
33197
  customerOrderReference?: WorkorderCustomerOrderReferenceDto | null;
33198
33198
  workOrderDescription?: string | null;
33199
33199
  operationDescription?: string;
@@ -47108,7 +47108,7 @@ export class WorkorderDto implements IWorkorderDto {
47108
47108
  id!: string;
47109
47109
  part!: PartDto;
47110
47110
  quantity!: number;
47111
- unit!: string;
47111
+ unit?: string | null;
47112
47112
  status!: WorkorderStatus;
47113
47113
  operations!: WorkorderOperationDto[];
47114
47114
  plannedStart?: Date | null;
@@ -47192,7 +47192,7 @@ export interface IWorkorderDto {
47192
47192
  id: string;
47193
47193
  part: PartDto;
47194
47194
  quantity: number;
47195
- unit: string;
47195
+ unit?: string | null;
47196
47196
  status: WorkorderStatus;
47197
47197
  operations: WorkorderOperationDto[];
47198
47198
  plannedStart?: Date | null;