@ignos/api-client 20260219.56.1-alpha → 20260219.57.1-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.
@@ -2077,7 +2077,7 @@ export declare class MoveBookingClient extends AuthorizedApiBase implements IMov
2077
2077
  protected processExportBookings(response: Response): Promise<DownloadDto>;
2078
2078
  }
2079
2079
  export interface IMoveLocationsClient {
2080
- listLocations(includeAllLocations: boolean | null | undefined): Promise<LocationZoneGroupDto[]>;
2080
+ listLocations(): Promise<LocationZoneGroupDto[]>;
2081
2081
  searchLocations(input: string | null | undefined, locationKinds: LocationKindDto[] | null | undefined, locationProfiles: LocationProfileDto[] | null | undefined): Promise<LocationDto[]>;
2082
2082
  suggestionsLocations(locationProfiles: LocationProfileDto[] | null | undefined, count: number | undefined): Promise<LocationDto[]>;
2083
2083
  suggestionsParcel(parcelId: string[] | undefined): Promise<SuggestionsResponseDto>;
@@ -2090,7 +2090,7 @@ export declare class MoveLocationsClient extends AuthorizedApiBase implements IM
2090
2090
  constructor(configuration: IAccessTokenProvider, baseUrl?: string, http?: {
2091
2091
  fetch(url: RequestInfo, init?: RequestInit): Promise<Response>;
2092
2092
  });
2093
- listLocations(includeAllLocations: boolean | null | undefined): Promise<LocationZoneGroupDto[]>;
2093
+ listLocations(): Promise<LocationZoneGroupDto[]>;
2094
2094
  protected processListLocations(response: Response): Promise<LocationZoneGroupDto[]>;
2095
2095
  searchLocations(input: string | null | undefined, locationKinds: LocationKindDto[] | null | undefined, locationProfiles: LocationProfileDto[] | null | undefined): Promise<LocationDto[]>;
2096
2096
  protected processSearchLocations(response: Response): Promise<LocationDto[]>;
@@ -3333,9 +3333,7 @@ export interface DowntimePeriodReasonDto {
3333
3333
  id: number;
3334
3334
  reason: string;
3335
3335
  parentReasonId?: string | null;
3336
- categoryId?: string | null;
3337
3336
  parentReason?: string | null;
3338
- category?: string | null;
3339
3337
  reasonType: DowntimeReasonTypeDto;
3340
3338
  startTime: Date;
3341
3339
  endTime?: Date | null;
@@ -3812,7 +3810,6 @@ export interface IgnosPortalControllersResourcesApiModelsCreateDowntimeReasonsRe
3812
3810
  resourceGroupNames?: string[] | null;
3813
3811
  startTime?: Date | null;
3814
3812
  endTime?: Date | null;
3815
- workOrderAndPartSearch?: string | null;
3816
3813
  }
3817
3814
  export interface DowntimeReasonsReportCsvDto {
3818
3815
  downtimeCsv?: DownloadDto | null;
@@ -3866,6 +3863,7 @@ export interface CalendarSettingsDto {
3866
3863
  };
3867
3864
  halfDayHours?: number;
3868
3865
  holidayHours?: number;
3866
+ defaultPerformanceFraction?: number;
3869
3867
  }
3870
3868
  export type DayOfWeek = 0 | 1 | 2 | 3 | 4 | 5 | 6;
3871
3869
  export interface UpdateCalendarSettingsCommand {
@@ -3874,6 +3872,7 @@ export interface UpdateCalendarSettingsCommand {
3874
3872
  };
3875
3873
  halfDayHours?: number;
3876
3874
  holidayHours?: number;
3875
+ defaultPerformanceFraction?: number;
3877
3876
  }
3878
3877
  export interface ResourceKpiDto {
3879
3878
  uptimeToNow: number;
@@ -4187,6 +4186,7 @@ export interface UtilizationDetailsV2Dto {
4187
4186
  uptimeInMilliseconds?: number | null;
4188
4187
  downtimeInMilliseconds?: number | null;
4189
4188
  totalTimeInMilliseconds?: number | null;
4189
+ performancePercent?: number | null;
4190
4190
  }
4191
4191
  export interface MachineGroupUtilizationV2Dto {
4192
4192
  name: string;
@@ -17062,10 +17062,8 @@ export class MoveLocationsClient extends AuthorizedApiBase {
17062
17062
  this.http = http ? http : window;
17063
17063
  this.baseUrl = baseUrl !== null && baseUrl !== void 0 ? baseUrl : "";
17064
17064
  }
17065
- listLocations(includeAllLocations) {
17066
- let url_ = this.baseUrl + "/move/locations/list?";
17067
- if (includeAllLocations !== undefined && includeAllLocations !== null)
17068
- url_ += "includeAllLocations=" + encodeURIComponent("" + includeAllLocations) + "&";
17065
+ listLocations() {
17066
+ let url_ = this.baseUrl + "/move/locations/list";
17069
17067
  url_ = url_.replace(/[?&]$/, "");
17070
17068
  let options_ = {
17071
17069
  method: "GET",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ignos/api-client",
3
- "version": "20260219.56.1-alpha",
3
+ "version": "20260219.57.1-alpha",
4
4
  "description": "IGNOS API Client",
5
5
  "type": "module",
6
6
  "main": "lib/index.js",
@@ -18232,7 +18232,7 @@ export class MoveBookingClient extends AuthorizedApiBase implements IMoveBooking
18232
18232
 
18233
18233
  export interface IMoveLocationsClient {
18234
18234
 
18235
- listLocations(includeAllLocations: boolean | null | undefined): Promise<LocationZoneGroupDto[]>;
18235
+ listLocations(): Promise<LocationZoneGroupDto[]>;
18236
18236
 
18237
18237
  searchLocations(input: string | null | undefined, locationKinds: LocationKindDto[] | null | undefined, locationProfiles: LocationProfileDto[] | null | undefined): Promise<LocationDto[]>;
18238
18238
 
@@ -18255,10 +18255,8 @@ export class MoveLocationsClient extends AuthorizedApiBase implements IMoveLocat
18255
18255
  this.baseUrl = baseUrl ?? "";
18256
18256
  }
18257
18257
 
18258
- listLocations(includeAllLocations: boolean | null | undefined): Promise<LocationZoneGroupDto[]> {
18259
- let url_ = this.baseUrl + "/move/locations/list?";
18260
- if (includeAllLocations !== undefined && includeAllLocations !== null)
18261
- url_ += "includeAllLocations=" + encodeURIComponent("" + includeAllLocations) + "&";
18258
+ listLocations(): Promise<LocationZoneGroupDto[]> {
18259
+ let url_ = this.baseUrl + "/move/locations/list";
18262
18260
  url_ = url_.replace(/[?&]$/, "");
18263
18261
 
18264
18262
  let options_: RequestInit = {
@@ -28053,9 +28051,7 @@ export interface DowntimePeriodReasonDto {
28053
28051
  id: number;
28054
28052
  reason: string;
28055
28053
  parentReasonId?: string | null;
28056
- categoryId?: string | null;
28057
28054
  parentReason?: string | null;
28058
- category?: string | null;
28059
28055
  reasonType: DowntimeReasonTypeDto;
28060
28056
  startTime: Date;
28061
28057
  endTime?: Date | null;
@@ -28608,7 +28604,6 @@ export interface IgnosPortalControllersResourcesApiModelsCreateDowntimeReasonsRe
28608
28604
  resourceGroupNames?: string[] | null;
28609
28605
  startTime?: Date | null;
28610
28606
  endTime?: Date | null;
28611
- workOrderAndPartSearch?: string | null;
28612
28607
  }
28613
28608
 
28614
28609
  export interface DowntimeReasonsReportCsvDto {
@@ -28670,6 +28665,7 @@ export interface CalendarSettingsDto {
28670
28665
  defaultHoursPerWeekday?: { [key in DayOfWeek]?: number; };
28671
28666
  halfDayHours?: number;
28672
28667
  holidayHours?: number;
28668
+ defaultPerformanceFraction?: number;
28673
28669
  }
28674
28670
 
28675
28671
  export type DayOfWeek = 0 | 1 | 2 | 3 | 4 | 5 | 6;
@@ -28678,6 +28674,7 @@ export interface UpdateCalendarSettingsCommand {
28678
28674
  defaultHoursPerWeekday?: { [key in DayOfWeek]?: number; };
28679
28675
  halfDayHours?: number;
28680
28676
  holidayHours?: number;
28677
+ defaultPerformanceFraction?: number;
28681
28678
  }
28682
28679
 
28683
28680
  export interface ResourceKpiDto {
@@ -29038,6 +29035,7 @@ export interface UtilizationDetailsV2Dto {
29038
29035
  uptimeInMilliseconds?: number | null;
29039
29036
  downtimeInMilliseconds?: number | null;
29040
29037
  totalTimeInMilliseconds?: number | null;
29038
+ performancePercent?: number | null;
29041
29039
  }
29042
29040
 
29043
29041
  export interface MachineGroupUtilizationV2Dto {