@ignos/api-client 20260223.64.1-alpha → 20260225.66.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;
@@ -7586,6 +7589,7 @@ export interface MeasurementFormCustomerSettingsDto {
7586
7589
  includeToolsInReport: boolean;
7587
7590
  validationRuleId?: string | null;
7588
7591
  requireCalibratedTools: boolean;
7592
+ allowEmptyToolListInValue: boolean;
7589
7593
  }
7590
7594
  export interface UpdateMeasurementFormCustomerSettings {
7591
7595
  customerId: string;
@@ -7593,6 +7597,7 @@ export interface UpdateMeasurementFormCustomerSettings {
7593
7597
  includeToolsInReport: boolean;
7594
7598
  validationRuleId?: string | null;
7595
7599
  requireCalibratedTools: boolean;
7600
+ allowEmptyToolListInValue: boolean;
7596
7601
  }
7597
7602
  export interface MeasurementFormMappingDto {
7598
7603
  id: string;
@@ -7982,6 +7987,7 @@ export interface SaveValueResponseDto {
7982
7987
  isOutsideTolerances: boolean;
7983
7988
  isCloseToTolerances: boolean;
7984
7989
  tools: MeasurementFormToolValueDto[];
7990
+ valueCompleted: boolean;
7985
7991
  }
7986
7992
  export interface SaveValueRequest {
7987
7993
  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": "20260223.64.1-alpha",
3
+ "version": "20260225.66.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 {
@@ -32897,6 +32902,7 @@ export interface MeasurementFormCustomerSettingsDto {
32897
32902
  includeToolsInReport: boolean;
32898
32903
  validationRuleId?: string | null;
32899
32904
  requireCalibratedTools: boolean;
32905
+ allowEmptyToolListInValue: boolean;
32900
32906
  }
32901
32907
 
32902
32908
  export interface UpdateMeasurementFormCustomerSettings {
@@ -32905,6 +32911,7 @@ export interface UpdateMeasurementFormCustomerSettings {
32905
32911
  includeToolsInReport: boolean;
32906
32912
  validationRuleId?: string | null;
32907
32913
  requireCalibratedTools: boolean;
32914
+ allowEmptyToolListInValue: boolean;
32908
32915
  }
32909
32916
 
32910
32917
  export interface MeasurementFormMappingDto {
@@ -33340,6 +33347,7 @@ export interface SaveValueResponseDto {
33340
33347
  isOutsideTolerances: boolean;
33341
33348
  isCloseToTolerances: boolean;
33342
33349
  tools: MeasurementFormToolValueDto[];
33350
+ valueCompleted: boolean;
33343
33351
  }
33344
33352
 
33345
33353
  export interface SaveValueRequest {