@ignos/api-client 20251027.0.13010 → 20251028.0.13024

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.
@@ -6123,6 +6123,7 @@ export declare class MachineCapacityDto implements IMachineCapacityDto {
6123
6123
  utilizationPercent: number;
6124
6124
  capacity: MachineCapacitySettingsDto[];
6125
6125
  created?: Date | null;
6126
+ updated?: Date | null;
6126
6127
  updatedBy?: string | null;
6127
6128
  updatedById?: string | null;
6128
6129
  constructor(data?: IMachineCapacityDto);
@@ -6138,6 +6139,7 @@ export interface IMachineCapacityDto {
6138
6139
  utilizationPercent: number;
6139
6140
  capacity: MachineCapacitySettingsDto[];
6140
6141
  created?: Date | null;
6142
+ updated?: Date | null;
6141
6143
  updatedBy?: string | null;
6142
6144
  updatedById?: string | null;
6143
6145
  }
@@ -30647,6 +30647,7 @@ export class MachineCapacityDto {
30647
30647
  this.capacity.push(MachineCapacitySettingsDto.fromJS(item));
30648
30648
  }
30649
30649
  this.created = _data["created"] ? new Date(_data["created"].toString()) : undefined;
30650
+ this.updated = _data["updated"] ? new Date(_data["updated"].toString()) : undefined;
30650
30651
  this.updatedBy = _data["updatedBy"];
30651
30652
  this.updatedById = _data["updatedById"];
30652
30653
  }
@@ -30670,6 +30671,7 @@ export class MachineCapacityDto {
30670
30671
  data["capacity"].push(item ? item.toJSON() : undefined);
30671
30672
  }
30672
30673
  data["created"] = this.created ? this.created.toISOString() : undefined;
30674
+ data["updated"] = this.updated ? this.updated.toISOString() : undefined;
30673
30675
  data["updatedBy"] = this.updatedBy;
30674
30676
  data["updatedById"] = this.updatedById;
30675
30677
  return data;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ignos/api-client",
3
- "version": "20251027.0.13010",
3
+ "version": "20251028.0.13024",
4
4
  "description": "IGNOS API Client",
5
5
  "type": "module",
6
6
  "main": "lib/index.js",
@@ -35511,6 +35511,7 @@ export class MachineCapacityDto implements IMachineCapacityDto {
35511
35511
  utilizationPercent!: number;
35512
35512
  capacity!: MachineCapacitySettingsDto[];
35513
35513
  created?: Date | null;
35514
+ updated?: Date | null;
35514
35515
  updatedBy?: string | null;
35515
35516
  updatedById?: string | null;
35516
35517
 
@@ -35539,6 +35540,7 @@ export class MachineCapacityDto implements IMachineCapacityDto {
35539
35540
  this.capacity!.push(MachineCapacitySettingsDto.fromJS(item));
35540
35541
  }
35541
35542
  this.created = _data["created"] ? new Date(_data["created"].toString()) : undefined as any;
35543
+ this.updated = _data["updated"] ? new Date(_data["updated"].toString()) : undefined as any;
35542
35544
  this.updatedBy = _data["updatedBy"];
35543
35545
  this.updatedById = _data["updatedById"];
35544
35546
  }
@@ -35564,6 +35566,7 @@ export class MachineCapacityDto implements IMachineCapacityDto {
35564
35566
  data["capacity"].push(item ? item.toJSON() : undefined as any);
35565
35567
  }
35566
35568
  data["created"] = this.created ? this.created.toISOString() : undefined as any;
35569
+ data["updated"] = this.updated ? this.updated.toISOString() : undefined as any;
35567
35570
  data["updatedBy"] = this.updatedBy;
35568
35571
  data["updatedById"] = this.updatedById;
35569
35572
  return data;
@@ -35578,6 +35581,7 @@ export interface IMachineCapacityDto {
35578
35581
  utilizationPercent: number;
35579
35582
  capacity: MachineCapacitySettingsDto[];
35580
35583
  created?: Date | null;
35584
+ updated?: Date | null;
35581
35585
  updatedBy?: string | null;
35582
35586
  updatedById?: string | null;
35583
35587
  }