@ignos/api-client 20260219.58.1-alpha → 20260220.59.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;
@@ -4186,7 +4187,6 @@ export interface UtilizationDetailsV2Dto {
4186
4187
  uptimeInMilliseconds?: number | null;
4187
4188
  downtimeInMilliseconds?: number | null;
4188
4189
  totalTimeInMilliseconds?: number | null;
4189
- performancePercent?: number | null;
4190
4190
  }
4191
4191
  export interface MachineGroupUtilizationV2Dto {
4192
4192
  name: string;
@@ -7586,6 +7586,7 @@ export interface MeasurementFormCustomerSettingsDto {
7586
7586
  includeToolsInReport: boolean;
7587
7587
  validationRuleId?: string | null;
7588
7588
  requireCalibratedTools: boolean;
7589
+ allowEmptyToolListInValue: boolean;
7589
7590
  }
7590
7591
  export interface UpdateMeasurementFormCustomerSettings {
7591
7592
  customerId: string;
@@ -7593,6 +7594,7 @@ export interface UpdateMeasurementFormCustomerSettings {
7593
7594
  includeToolsInReport: boolean;
7594
7595
  validationRuleId?: string | null;
7595
7596
  requireCalibratedTools: boolean;
7597
+ allowEmptyToolListInValue: boolean;
7596
7598
  }
7597
7599
  export interface MeasurementFormMappingDto {
7598
7600
  id: string;
@@ -7982,6 +7984,7 @@ export interface SaveValueResponseDto {
7982
7984
  isOutsideTolerances: boolean;
7983
7985
  isCloseToTolerances: boolean;
7984
7986
  tools: MeasurementFormToolValueDto[];
7987
+ valueCompleted: boolean;
7985
7988
  }
7986
7989
  export interface SaveValueRequest {
7987
7990
  operation?: number | null;
@@ -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.58.1-alpha",
3
+ "version": "20260220.59.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 {
@@ -29035,7 +29038,6 @@ export interface UtilizationDetailsV2Dto {
29035
29038
  uptimeInMilliseconds?: number | null;
29036
29039
  downtimeInMilliseconds?: number | null;
29037
29040
  totalTimeInMilliseconds?: number | null;
29038
- performancePercent?: number | null;
29039
29041
  }
29040
29042
 
29041
29043
  export interface MachineGroupUtilizationV2Dto {
@@ -32897,6 +32899,7 @@ export interface MeasurementFormCustomerSettingsDto {
32897
32899
  includeToolsInReport: boolean;
32898
32900
  validationRuleId?: string | null;
32899
32901
  requireCalibratedTools: boolean;
32902
+ allowEmptyToolListInValue: boolean;
32900
32903
  }
32901
32904
 
32902
32905
  export interface UpdateMeasurementFormCustomerSettings {
@@ -32905,6 +32908,7 @@ export interface UpdateMeasurementFormCustomerSettings {
32905
32908
  includeToolsInReport: boolean;
32906
32909
  validationRuleId?: string | null;
32907
32910
  requireCalibratedTools: boolean;
32911
+ allowEmptyToolListInValue: boolean;
32908
32912
  }
32909
32913
 
32910
32914
  export interface MeasurementFormMappingDto {
@@ -33340,6 +33344,7 @@ export interface SaveValueResponseDto {
33340
33344
  isOutsideTolerances: boolean;
33341
33345
  isCloseToTolerances: boolean;
33342
33346
  tools: MeasurementFormToolValueDto[];
33347
+ valueCompleted: boolean;
33343
33348
  }
33344
33349
 
33345
33350
  export interface SaveValueRequest {