@ignos/api-client 20250227.0.11278-alpha → 20250305.0.11300

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.
@@ -3653,6 +3653,7 @@ export interface INamedCompanyUtilizationDto extends ICompanyUtilizationDto {
3653
3653
  export declare class UtilizationDatapointListDto implements IUtilizationDatapointListDto {
3654
3654
  datapoints?: NumericNullableValueWithTimestamp[];
3655
3655
  trendDatapoints?: NumericNullableValueWithTimestamp[];
3656
+ linearTrendDatapoints?: NumericNullableValueWithTimestamp[];
3656
3657
  constructor(data?: IUtilizationDatapointListDto);
3657
3658
  init(_data?: any): void;
3658
3659
  static fromJS(data: any): UtilizationDatapointListDto;
@@ -3661,6 +3662,7 @@ export declare class UtilizationDatapointListDto implements IUtilizationDatapoin
3661
3662
  export interface IUtilizationDatapointListDto {
3662
3663
  datapoints?: NumericNullableValueWithTimestamp[];
3663
3664
  trendDatapoints?: NumericNullableValueWithTimestamp[];
3665
+ linearTrendDatapoints?: NumericNullableValueWithTimestamp[];
3664
3666
  }
3665
3667
  export declare class MachineUtilizationDatapointListDto extends UtilizationDatapointListDto implements IMachineUtilizationDatapointListDto {
3666
3668
  externalId: string;
@@ -23264,6 +23264,11 @@ export class UtilizationDatapointListDto {
23264
23264
  for (let item of _data["trendDatapoints"])
23265
23265
  this.trendDatapoints.push(NumericNullableValueWithTimestamp.fromJS(item));
23266
23266
  }
23267
+ if (Array.isArray(_data["linearTrendDatapoints"])) {
23268
+ this.linearTrendDatapoints = [];
23269
+ for (let item of _data["linearTrendDatapoints"])
23270
+ this.linearTrendDatapoints.push(NumericNullableValueWithTimestamp.fromJS(item));
23271
+ }
23267
23272
  }
23268
23273
  }
23269
23274
  static fromJS(data) {
@@ -23284,6 +23289,11 @@ export class UtilizationDatapointListDto {
23284
23289
  for (let item of this.trendDatapoints)
23285
23290
  data["trendDatapoints"].push(item.toJSON());
23286
23291
  }
23292
+ if (Array.isArray(this.linearTrendDatapoints)) {
23293
+ data["linearTrendDatapoints"] = [];
23294
+ for (let item of this.linearTrendDatapoints)
23295
+ data["linearTrendDatapoints"].push(item.toJSON());
23296
+ }
23287
23297
  return data;
23288
23298
  }
23289
23299
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ignos/api-client",
3
- "version": "20250227.0.11278-alpha",
3
+ "version": "20250305.0.11300",
4
4
  "description": "IGNOS API Client",
5
5
  "type": "module",
6
6
  "main": "lib/index.js",
@@ -25778,6 +25778,7 @@ export interface INamedCompanyUtilizationDto extends ICompanyUtilizationDto {
25778
25778
  export class UtilizationDatapointListDto implements IUtilizationDatapointListDto {
25779
25779
  datapoints?: NumericNullableValueWithTimestamp[];
25780
25780
  trendDatapoints?: NumericNullableValueWithTimestamp[];
25781
+ linearTrendDatapoints?: NumericNullableValueWithTimestamp[];
25781
25782
 
25782
25783
  constructor(data?: IUtilizationDatapointListDto) {
25783
25784
  if (data) {
@@ -25800,6 +25801,11 @@ export class UtilizationDatapointListDto implements IUtilizationDatapointListDto
25800
25801
  for (let item of _data["trendDatapoints"])
25801
25802
  this.trendDatapoints!.push(NumericNullableValueWithTimestamp.fromJS(item));
25802
25803
  }
25804
+ if (Array.isArray(_data["linearTrendDatapoints"])) {
25805
+ this.linearTrendDatapoints = [] as any;
25806
+ for (let item of _data["linearTrendDatapoints"])
25807
+ this.linearTrendDatapoints!.push(NumericNullableValueWithTimestamp.fromJS(item));
25808
+ }
25803
25809
  }
25804
25810
  }
25805
25811
 
@@ -25822,6 +25828,11 @@ export class UtilizationDatapointListDto implements IUtilizationDatapointListDto
25822
25828
  for (let item of this.trendDatapoints)
25823
25829
  data["trendDatapoints"].push(item.toJSON());
25824
25830
  }
25831
+ if (Array.isArray(this.linearTrendDatapoints)) {
25832
+ data["linearTrendDatapoints"] = [];
25833
+ for (let item of this.linearTrendDatapoints)
25834
+ data["linearTrendDatapoints"].push(item.toJSON());
25835
+ }
25825
25836
  return data;
25826
25837
  }
25827
25838
  }
@@ -25829,6 +25840,7 @@ export class UtilizationDatapointListDto implements IUtilizationDatapointListDto
25829
25840
  export interface IUtilizationDatapointListDto {
25830
25841
  datapoints?: NumericNullableValueWithTimestamp[];
25831
25842
  trendDatapoints?: NumericNullableValueWithTimestamp[];
25843
+ linearTrendDatapoints?: NumericNullableValueWithTimestamp[];
25832
25844
  }
25833
25845
 
25834
25846
  export class MachineUtilizationDatapointListDto extends UtilizationDatapointListDto implements IMachineUtilizationDatapointListDto {