@ignos/api-client 20250311.0.11343 → 20250312.0.11352

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;
@@ -11099,15 +11099,14 @@ export declare class UpdateSchemaGroupedElementRowDto implements IUpdateSchemaGr
11099
11099
  section?: string | null;
11100
11100
  pageNumber?: number | null;
11101
11101
  measurements?: number | null;
11102
- nominal?: number | null;
11103
11102
  nominalText?: string | null;
11104
11103
  type?: string | null;
11105
11104
  subType?: string | null;
11106
11105
  unitOfMeasure?: string | null;
11107
- plusTolerance?: number | null;
11108
- minusTolerance?: number | null;
11109
- upperLimit?: number | null;
11110
- lowerLimit?: number | null;
11106
+ plusTolerance?: string | null;
11107
+ minusTolerance?: string | null;
11108
+ upperLimit?: string | null;
11109
+ lowerLimit?: string | null;
11111
11110
  coatingThickness?: number | null;
11112
11111
  comments?: string | null;
11113
11112
  frequency: MeasurementFrequency;
@@ -11125,15 +11124,14 @@ export interface IUpdateSchemaGroupedElementRowDto {
11125
11124
  section?: string | null;
11126
11125
  pageNumber?: number | null;
11127
11126
  measurements?: number | null;
11128
- nominal?: number | null;
11129
11127
  nominalText?: string | null;
11130
11128
  type?: string | null;
11131
11129
  subType?: string | null;
11132
11130
  unitOfMeasure?: string | null;
11133
- plusTolerance?: number | null;
11134
- minusTolerance?: number | null;
11135
- upperLimit?: number | null;
11136
- lowerLimit?: number | null;
11131
+ plusTolerance?: string | null;
11132
+ minusTolerance?: string | null;
11133
+ upperLimit?: string | null;
11134
+ lowerLimit?: string | null;
11137
11135
  coatingThickness?: number | null;
11138
11136
  comments?: string | null;
11139
11137
  frequency: MeasurementFrequency;
@@ -38646,7 +38646,6 @@ export class UpdateSchemaGroupedElementRowDto {
38646
38646
  this.section = _data["section"];
38647
38647
  this.pageNumber = _data["pageNumber"];
38648
38648
  this.measurements = _data["measurements"];
38649
- this.nominal = _data["nominal"];
38650
38649
  this.nominalText = _data["nominalText"];
38651
38650
  this.type = _data["type"];
38652
38651
  this.subType = _data["subType"];
@@ -38676,7 +38675,6 @@ export class UpdateSchemaGroupedElementRowDto {
38676
38675
  data["section"] = this.section;
38677
38676
  data["pageNumber"] = this.pageNumber;
38678
38677
  data["measurements"] = this.measurements;
38679
- data["nominal"] = this.nominal;
38680
38678
  data["nominalText"] = this.nominalText;
38681
38679
  data["type"] = this.type;
38682
38680
  data["subType"] = this.subType;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ignos/api-client",
3
- "version": "20250311.0.11343",
3
+ "version": "20250312.0.11352",
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;
@@ -48657,15 +48657,14 @@ export class UpdateSchemaGroupedElementRowDto implements IUpdateSchemaGroupedEle
48657
48657
  section?: string | null;
48658
48658
  pageNumber?: number | null;
48659
48659
  measurements?: number | null;
48660
- nominal?: number | null;
48661
48660
  nominalText?: string | null;
48662
48661
  type?: string | null;
48663
48662
  subType?: string | null;
48664
48663
  unitOfMeasure?: string | null;
48665
- plusTolerance?: number | null;
48666
- minusTolerance?: number | null;
48667
- upperLimit?: number | null;
48668
- lowerLimit?: number | null;
48664
+ plusTolerance?: string | null;
48665
+ minusTolerance?: string | null;
48666
+ upperLimit?: string | null;
48667
+ lowerLimit?: string | null;
48669
48668
  coatingThickness?: number | null;
48670
48669
  comments?: string | null;
48671
48670
  frequency!: MeasurementFrequency;
@@ -48689,7 +48688,6 @@ export class UpdateSchemaGroupedElementRowDto implements IUpdateSchemaGroupedEle
48689
48688
  this.section = _data["section"];
48690
48689
  this.pageNumber = _data["pageNumber"];
48691
48690
  this.measurements = _data["measurements"];
48692
- this.nominal = _data["nominal"];
48693
48691
  this.nominalText = _data["nominalText"];
48694
48692
  this.type = _data["type"];
48695
48693
  this.subType = _data["subType"];
@@ -48721,7 +48719,6 @@ export class UpdateSchemaGroupedElementRowDto implements IUpdateSchemaGroupedEle
48721
48719
  data["section"] = this.section;
48722
48720
  data["pageNumber"] = this.pageNumber;
48723
48721
  data["measurements"] = this.measurements;
48724
- data["nominal"] = this.nominal;
48725
48722
  data["nominalText"] = this.nominalText;
48726
48723
  data["type"] = this.type;
48727
48724
  data["subType"] = this.subType;
@@ -48746,15 +48743,14 @@ export interface IUpdateSchemaGroupedElementRowDto {
48746
48743
  section?: string | null;
48747
48744
  pageNumber?: number | null;
48748
48745
  measurements?: number | null;
48749
- nominal?: number | null;
48750
48746
  nominalText?: string | null;
48751
48747
  type?: string | null;
48752
48748
  subType?: string | null;
48753
48749
  unitOfMeasure?: string | null;
48754
- plusTolerance?: number | null;
48755
- minusTolerance?: number | null;
48756
- upperLimit?: number | null;
48757
- lowerLimit?: number | null;
48750
+ plusTolerance?: string | null;
48751
+ minusTolerance?: string | null;
48752
+ upperLimit?: string | null;
48753
+ lowerLimit?: string | null;
48758
48754
  coatingThickness?: number | null;
48759
48755
  comments?: string | null;
48760
48756
  frequency: MeasurementFrequency;