@ignos/api-client 20250619.0.11933 → 20250624.0.11970-alpha

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.
@@ -3713,7 +3713,7 @@ export interface IPulseSettingsDto {
3713
3713
  defaultUtilizationType: UtilizationTypeDto;
3714
3714
  utilizationTypeEnabling: UtilizationTypeEnablingDto;
3715
3715
  }
3716
- export type UtilizationTypeDto = "PowerOn" | "TwentyFourSeven" | "ActiveOrder";
3716
+ export type UtilizationTypeDto = "PowerOn" | "TwentyFourSeven" | "ActiveOrder" | "MachineCalendar" | "FactoryCalendar";
3717
3717
  export declare class UtilizationTypeEnablingDto implements IUtilizationTypeEnablingDto {
3718
3718
  powerOnEnabled: boolean;
3719
3719
  twentyFourSevenEnabled: boolean;
@@ -3762,6 +3762,7 @@ export interface ICompanyUtilizationDto {
3762
3762
  }
3763
3763
  export declare class UtilizationDetailsV2Dto implements IUtilizationDetailsV2Dto {
3764
3764
  utilizationPercent?: number | null;
3765
+ capacityInMilliseconds?: number;
3765
3766
  uptimeInSeconds?: number | null;
3766
3767
  downtimeInSeconds?: number | null;
3767
3768
  totalTimeInSeconds?: number | null;
@@ -3775,6 +3776,7 @@ export declare class UtilizationDetailsV2Dto implements IUtilizationDetailsV2Dto
3775
3776
  }
3776
3777
  export interface IUtilizationDetailsV2Dto {
3777
3778
  utilizationPercent?: number | null;
3779
+ capacityInMilliseconds?: number;
3778
3780
  uptimeInSeconds?: number | null;
3779
3781
  downtimeInSeconds?: number | null;
3780
3782
  totalTimeInSeconds?: number | null;
@@ -8312,6 +8314,11 @@ export declare class FixtureDto implements IFixtureDto {
8312
8314
  totalLength?: number | null;
8313
8315
  gripSide?: GripSideDto | null;
8314
8316
  description?: string | null;
8317
+ created: Date;
8318
+ createdBy: string;
8319
+ createdById: string;
8320
+ updatedBy?: string | null;
8321
+ updatedById?: string | null;
8315
8322
  constructor(data?: IFixtureDto);
8316
8323
  init(_data?: any): void;
8317
8324
  static fromJS(data: any): FixtureDto;
@@ -8343,6 +8350,11 @@ export interface IFixtureDto {
8343
8350
  totalLength?: number | null;
8344
8351
  gripSide?: GripSideDto | null;
8345
8352
  description?: string | null;
8353
+ created: Date;
8354
+ createdBy: string;
8355
+ createdById: string;
8356
+ updatedBy?: string | null;
8357
+ updatedById?: string | null;
8346
8358
  }
8347
8359
  export declare class FixtureInstanceDto implements IFixtureInstanceDto {
8348
8360
  fixtureId: string;
@@ -24734,6 +24734,7 @@ export class UtilizationDetailsV2Dto {
24734
24734
  init(_data) {
24735
24735
  if (_data) {
24736
24736
  this.utilizationPercent = _data["utilizationPercent"];
24737
+ this.capacityInMilliseconds = _data["capacityInMilliseconds"];
24737
24738
  this.uptimeInSeconds = _data["uptimeInSeconds"];
24738
24739
  this.downtimeInSeconds = _data["downtimeInSeconds"];
24739
24740
  this.totalTimeInSeconds = _data["totalTimeInSeconds"];
@@ -24751,6 +24752,7 @@ export class UtilizationDetailsV2Dto {
24751
24752
  toJSON(data) {
24752
24753
  data = typeof data === 'object' ? data : {};
24753
24754
  data["utilizationPercent"] = this.utilizationPercent;
24755
+ data["capacityInMilliseconds"] = this.capacityInMilliseconds;
24754
24756
  data["uptimeInSeconds"] = this.uptimeInSeconds;
24755
24757
  data["downtimeInSeconds"] = this.downtimeInSeconds;
24756
24758
  data["totalTimeInSeconds"] = this.totalTimeInSeconds;
@@ -33965,6 +33967,11 @@ export class FixtureDto {
33965
33967
  this.totalLength = _data["totalLength"];
33966
33968
  this.gripSide = _data["gripSide"];
33967
33969
  this.description = _data["description"];
33970
+ this.created = _data["created"] ? new Date(_data["created"].toString()) : undefined;
33971
+ this.createdBy = _data["createdBy"];
33972
+ this.createdById = _data["createdById"];
33973
+ this.updatedBy = _data["updatedBy"];
33974
+ this.updatedById = _data["updatedById"];
33968
33975
  }
33969
33976
  }
33970
33977
  static fromJS(data) {
@@ -34008,6 +34015,11 @@ export class FixtureDto {
34008
34015
  data["totalLength"] = this.totalLength;
34009
34016
  data["gripSide"] = this.gripSide;
34010
34017
  data["description"] = this.description;
34018
+ data["created"] = this.created ? this.created.toISOString() : undefined;
34019
+ data["createdBy"] = this.createdBy;
34020
+ data["createdById"] = this.createdById;
34021
+ data["updatedBy"] = this.updatedBy;
34022
+ data["updatedById"] = this.updatedById;
34011
34023
  return data;
34012
34024
  }
34013
34025
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ignos/api-client",
3
- "version": "20250619.0.11933",
3
+ "version": "20250624.0.11970-alpha",
4
4
  "description": "IGNOS API Client",
5
5
  "type": "module",
6
6
  "main": "lib/index.js",
@@ -27128,7 +27128,7 @@ export interface IPulseSettingsDto {
27128
27128
  utilizationTypeEnabling: UtilizationTypeEnablingDto;
27129
27129
  }
27130
27130
 
27131
- export type UtilizationTypeDto = "PowerOn" | "TwentyFourSeven" | "ActiveOrder";
27131
+ export type UtilizationTypeDto = "PowerOn" | "TwentyFourSeven" | "ActiveOrder" | "MachineCalendar" | "FactoryCalendar";
27132
27132
 
27133
27133
  export class UtilizationTypeEnablingDto implements IUtilizationTypeEnablingDto {
27134
27134
  powerOnEnabled!: boolean;
@@ -27293,6 +27293,7 @@ export interface ICompanyUtilizationDto {
27293
27293
 
27294
27294
  export class UtilizationDetailsV2Dto implements IUtilizationDetailsV2Dto {
27295
27295
  utilizationPercent?: number | null;
27296
+ capacityInMilliseconds?: number;
27296
27297
  uptimeInSeconds?: number | null;
27297
27298
  downtimeInSeconds?: number | null;
27298
27299
  totalTimeInSeconds?: number | null;
@@ -27312,6 +27313,7 @@ export class UtilizationDetailsV2Dto implements IUtilizationDetailsV2Dto {
27312
27313
  init(_data?: any) {
27313
27314
  if (_data) {
27314
27315
  this.utilizationPercent = _data["utilizationPercent"];
27316
+ this.capacityInMilliseconds = _data["capacityInMilliseconds"];
27315
27317
  this.uptimeInSeconds = _data["uptimeInSeconds"];
27316
27318
  this.downtimeInSeconds = _data["downtimeInSeconds"];
27317
27319
  this.totalTimeInSeconds = _data["totalTimeInSeconds"];
@@ -27331,6 +27333,7 @@ export class UtilizationDetailsV2Dto implements IUtilizationDetailsV2Dto {
27331
27333
  toJSON(data?: any) {
27332
27334
  data = typeof data === 'object' ? data : {};
27333
27335
  data["utilizationPercent"] = this.utilizationPercent;
27336
+ data["capacityInMilliseconds"] = this.capacityInMilliseconds;
27334
27337
  data["uptimeInSeconds"] = this.uptimeInSeconds;
27335
27338
  data["downtimeInSeconds"] = this.downtimeInSeconds;
27336
27339
  data["totalTimeInSeconds"] = this.totalTimeInSeconds;
@@ -27343,6 +27346,7 @@ export class UtilizationDetailsV2Dto implements IUtilizationDetailsV2Dto {
27343
27346
 
27344
27347
  export interface IUtilizationDetailsV2Dto {
27345
27348
  utilizationPercent?: number | null;
27349
+ capacityInMilliseconds?: number;
27346
27350
  uptimeInSeconds?: number | null;
27347
27351
  downtimeInSeconds?: number | null;
27348
27352
  totalTimeInSeconds?: number | null;
@@ -41072,6 +41076,11 @@ export class FixtureDto implements IFixtureDto {
41072
41076
  totalLength?: number | null;
41073
41077
  gripSide?: GripSideDto | null;
41074
41078
  description?: string | null;
41079
+ created!: Date;
41080
+ createdBy!: string;
41081
+ createdById!: string;
41082
+ updatedBy?: string | null;
41083
+ updatedById?: string | null;
41075
41084
 
41076
41085
  constructor(data?: IFixtureDto) {
41077
41086
  if (data) {
@@ -41121,6 +41130,11 @@ export class FixtureDto implements IFixtureDto {
41121
41130
  this.totalLength = _data["totalLength"];
41122
41131
  this.gripSide = _data["gripSide"];
41123
41132
  this.description = _data["description"];
41133
+ this.created = _data["created"] ? new Date(_data["created"].toString()) : <any>undefined;
41134
+ this.createdBy = _data["createdBy"];
41135
+ this.createdById = _data["createdById"];
41136
+ this.updatedBy = _data["updatedBy"];
41137
+ this.updatedById = _data["updatedById"];
41124
41138
  }
41125
41139
  }
41126
41140
 
@@ -41166,6 +41180,11 @@ export class FixtureDto implements IFixtureDto {
41166
41180
  data["totalLength"] = this.totalLength;
41167
41181
  data["gripSide"] = this.gripSide;
41168
41182
  data["description"] = this.description;
41183
+ data["created"] = this.created ? this.created.toISOString() : <any>undefined;
41184
+ data["createdBy"] = this.createdBy;
41185
+ data["createdById"] = this.createdById;
41186
+ data["updatedBy"] = this.updatedBy;
41187
+ data["updatedById"] = this.updatedById;
41169
41188
  return data;
41170
41189
  }
41171
41190
  }
@@ -41196,6 +41215,11 @@ export interface IFixtureDto {
41196
41215
  totalLength?: number | null;
41197
41216
  gripSide?: GripSideDto | null;
41198
41217
  description?: string | null;
41218
+ created: Date;
41219
+ createdBy: string;
41220
+ createdById: string;
41221
+ updatedBy?: string | null;
41222
+ updatedById?: string | null;
41199
41223
  }
41200
41224
 
41201
41225
  export class FixtureInstanceDto implements IFixtureInstanceDto {