@ignos/api-client 20250116.0.10991 → 20250116.0.10993

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.
@@ -5346,6 +5346,7 @@ export interface IMachineGroupCapacityDto {
5346
5346
  export declare class MachineCapacityDto implements IMachineCapacityDto {
5347
5347
  machineExternalId: string;
5348
5348
  name: string;
5349
+ description?: string | null;
5349
5350
  utilizationPercent: number;
5350
5351
  comment?: string | null;
5351
5352
  capacity: MachineCapacitySettingsDto[];
@@ -5360,6 +5361,7 @@ export declare class MachineCapacityDto implements IMachineCapacityDto {
5360
5361
  export interface IMachineCapacityDto {
5361
5362
  machineExternalId: string;
5362
5363
  name: string;
5364
+ description?: string | null;
5363
5365
  utilizationPercent: number;
5364
5366
  comment?: string | null;
5365
5367
  capacity: MachineCapacitySettingsDto[];
@@ -26388,6 +26388,7 @@ export class MachineCapacityDto {
26388
26388
  if (_data) {
26389
26389
  this.machineExternalId = _data["machineExternalId"];
26390
26390
  this.name = _data["name"];
26391
+ this.description = _data["description"];
26391
26392
  this.utilizationPercent = _data["utilizationPercent"];
26392
26393
  this.comment = _data["comment"];
26393
26394
  if (Array.isArray(_data["capacity"])) {
@@ -26410,6 +26411,7 @@ export class MachineCapacityDto {
26410
26411
  data = typeof data === 'object' ? data : {};
26411
26412
  data["machineExternalId"] = this.machineExternalId;
26412
26413
  data["name"] = this.name;
26414
+ data["description"] = this.description;
26413
26415
  data["utilizationPercent"] = this.utilizationPercent;
26414
26416
  data["comment"] = this.comment;
26415
26417
  if (Array.isArray(this.capacity)) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ignos/api-client",
3
- "version": "20250116.0.10991",
3
+ "version": "20250116.0.10993",
4
4
  "description": "IGNOS API Client",
5
5
  "type": "module",
6
6
  "main": "lib/index.js",
@@ -30643,6 +30643,7 @@ export interface IMachineGroupCapacityDto {
30643
30643
  export class MachineCapacityDto implements IMachineCapacityDto {
30644
30644
  machineExternalId!: string;
30645
30645
  name!: string;
30646
+ description?: string | null;
30646
30647
  utilizationPercent!: number;
30647
30648
  comment?: string | null;
30648
30649
  capacity!: MachineCapacitySettingsDto[];
@@ -30666,6 +30667,7 @@ export class MachineCapacityDto implements IMachineCapacityDto {
30666
30667
  if (_data) {
30667
30668
  this.machineExternalId = _data["machineExternalId"];
30668
30669
  this.name = _data["name"];
30670
+ this.description = _data["description"];
30669
30671
  this.utilizationPercent = _data["utilizationPercent"];
30670
30672
  this.comment = _data["comment"];
30671
30673
  if (Array.isArray(_data["capacity"])) {
@@ -30690,6 +30692,7 @@ export class MachineCapacityDto implements IMachineCapacityDto {
30690
30692
  data = typeof data === 'object' ? data : {};
30691
30693
  data["machineExternalId"] = this.machineExternalId;
30692
30694
  data["name"] = this.name;
30695
+ data["description"] = this.description;
30693
30696
  data["utilizationPercent"] = this.utilizationPercent;
30694
30697
  data["comment"] = this.comment;
30695
30698
  if (Array.isArray(this.capacity)) {
@@ -30707,6 +30710,7 @@ export class MachineCapacityDto implements IMachineCapacityDto {
30707
30710
  export interface IMachineCapacityDto {
30708
30711
  machineExternalId: string;
30709
30712
  name: string;
30713
+ description?: string | null;
30710
30714
  utilizationPercent: number;
30711
30715
  comment?: string | null;
30712
30716
  capacity: MachineCapacitySettingsDto[];