@ignos/api-client 20260219.54.1-alpha → 20260219.56.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(): Promise<LocationZoneGroupDto[]>;
2080
+ listLocations(includeAllLocations: boolean | null | undefined): 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(): Promise<LocationZoneGroupDto[]>;
2093
+ listLocations(includeAllLocations: boolean | null | undefined): 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,7 +3333,9 @@ export interface DowntimePeriodReasonDto {
3333
3333
  id: number;
3334
3334
  reason: string;
3335
3335
  parentReasonId?: string | null;
3336
+ categoryId?: string | null;
3336
3337
  parentReason?: string | null;
3338
+ category?: string | null;
3337
3339
  reasonType: DowntimeReasonTypeDto;
3338
3340
  startTime: Date;
3339
3341
  endTime?: Date | null;
@@ -3810,6 +3812,7 @@ export interface IgnosPortalControllersResourcesApiModelsCreateDowntimeReasonsRe
3810
3812
  resourceGroupNames?: string[] | null;
3811
3813
  startTime?: Date | null;
3812
3814
  endTime?: Date | null;
3815
+ workOrderAndPartSearch?: string | null;
3813
3816
  }
3814
3817
  export interface DowntimeReasonsReportCsvDto {
3815
3818
  downtimeCsv?: DownloadDto | null;
@@ -3863,7 +3866,6 @@ export interface CalendarSettingsDto {
3863
3866
  };
3864
3867
  halfDayHours?: number;
3865
3868
  holidayHours?: number;
3866
- defaultPerformanceFraction?: number;
3867
3869
  }
3868
3870
  export type DayOfWeek = 0 | 1 | 2 | 3 | 4 | 5 | 6;
3869
3871
  export interface UpdateCalendarSettingsCommand {
@@ -3872,7 +3874,6 @@ export interface UpdateCalendarSettingsCommand {
3872
3874
  };
3873
3875
  halfDayHours?: number;
3874
3876
  holidayHours?: number;
3875
- defaultPerformanceFraction?: number;
3876
3877
  }
3877
3878
  export interface ResourceKpiDto {
3878
3879
  uptimeToNow: number;
@@ -4211,7 +4212,6 @@ export interface UtilizationDatapointListDto {
4211
4212
  datapoints?: NumericNullableValueWithTimestamp[];
4212
4213
  trendDatapoints?: NumericNullableValueWithTimestamp[];
4213
4214
  linearTrendDatapoints?: NumericNullableValueWithTimestamp[];
4214
- performanceFraction?: number;
4215
4215
  }
4216
4216
  export interface MachineUtilizationDatapointListDto extends UtilizationDatapointListDto {
4217
4217
  externalId: string;
@@ -17062,8 +17062,10 @@ 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() {
17066
- let url_ = this.baseUrl + "/move/locations/list";
17065
+ listLocations(includeAllLocations) {
17066
+ let url_ = this.baseUrl + "/move/locations/list?";
17067
+ if (includeAllLocations !== undefined && includeAllLocations !== null)
17068
+ url_ += "includeAllLocations=" + encodeURIComponent("" + includeAllLocations) + "&";
17067
17069
  url_ = url_.replace(/[?&]$/, "");
17068
17070
  let options_ = {
17069
17071
  method: "GET",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ignos/api-client",
3
- "version": "20260219.54.1-alpha",
3
+ "version": "20260219.56.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(): Promise<LocationZoneGroupDto[]>;
18235
+ listLocations(includeAllLocations: boolean | null | undefined): Promise<LocationZoneGroupDto[]>;
18236
18236
 
18237
18237
  searchLocations(input: string | null | undefined, locationKinds: LocationKindDto[] | null | undefined, locationProfiles: LocationProfileDto[] | null | undefined): Promise<LocationDto[]>;
18238
18238
 
@@ -18255,8 +18255,10 @@ export class MoveLocationsClient extends AuthorizedApiBase implements IMoveLocat
18255
18255
  this.baseUrl = baseUrl ?? "";
18256
18256
  }
18257
18257
 
18258
- listLocations(): Promise<LocationZoneGroupDto[]> {
18259
- let url_ = this.baseUrl + "/move/locations/list";
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) + "&";
18260
18262
  url_ = url_.replace(/[?&]$/, "");
18261
18263
 
18262
18264
  let options_: RequestInit = {
@@ -28051,7 +28053,9 @@ export interface DowntimePeriodReasonDto {
28051
28053
  id: number;
28052
28054
  reason: string;
28053
28055
  parentReasonId?: string | null;
28056
+ categoryId?: string | null;
28054
28057
  parentReason?: string | null;
28058
+ category?: string | null;
28055
28059
  reasonType: DowntimeReasonTypeDto;
28056
28060
  startTime: Date;
28057
28061
  endTime?: Date | null;
@@ -28604,6 +28608,7 @@ export interface IgnosPortalControllersResourcesApiModelsCreateDowntimeReasonsRe
28604
28608
  resourceGroupNames?: string[] | null;
28605
28609
  startTime?: Date | null;
28606
28610
  endTime?: Date | null;
28611
+ workOrderAndPartSearch?: string | null;
28607
28612
  }
28608
28613
 
28609
28614
  export interface DowntimeReasonsReportCsvDto {
@@ -28665,7 +28670,6 @@ export interface CalendarSettingsDto {
28665
28670
  defaultHoursPerWeekday?: { [key in DayOfWeek]?: number; };
28666
28671
  halfDayHours?: number;
28667
28672
  holidayHours?: number;
28668
- defaultPerformanceFraction?: number;
28669
28673
  }
28670
28674
 
28671
28675
  export type DayOfWeek = 0 | 1 | 2 | 3 | 4 | 5 | 6;
@@ -28674,7 +28678,6 @@ export interface UpdateCalendarSettingsCommand {
28674
28678
  defaultHoursPerWeekday?: { [key in DayOfWeek]?: number; };
28675
28679
  halfDayHours?: number;
28676
28680
  holidayHours?: number;
28677
- defaultPerformanceFraction?: number;
28678
28681
  }
28679
28682
 
28680
28683
  export interface ResourceKpiDto {
@@ -29065,7 +29068,6 @@ export interface UtilizationDatapointListDto {
29065
29068
  datapoints?: NumericNullableValueWithTimestamp[];
29066
29069
  trendDatapoints?: NumericNullableValueWithTimestamp[];
29067
29070
  linearTrendDatapoints?: NumericNullableValueWithTimestamp[];
29068
- performanceFraction?: number;
29069
29071
  }
29070
29072
 
29071
29073
  export interface MachineUtilizationDatapointListDto extends UtilizationDatapointListDto {