@ignos/api-client 20240625.0.9645 → 20240626.0.9651

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.
@@ -8665,7 +8665,7 @@ export interface IBookingDto {
8665
8665
  }
8666
8666
  export type BookingKindDto = "Forklift" | "General" | "ChipDisposal" | "Garbage";
8667
8667
  export type TransportKindDto = "NormalForklift" | "LargeForklift" | "SideLoadingForklift";
8668
- export type BookingStatusDto = "Pending" | "Cancelled" | "InProgress" | "Complete";
8668
+ export type BookingStatusDto = "Pending" | "Cancelled" | "InProgress" | "Completed";
8669
8669
  export declare class BookingItemDto implements IBookingItemDto {
8670
8670
  trackingId: string;
8671
8671
  workOrderId: string;
@@ -8886,7 +8886,7 @@ export interface ITrackingEventDto {
8886
8886
  bookingId?: string | null;
8887
8887
  comment?: string | null;
8888
8888
  }
8889
- export type TrackingStatusDto = "Manual" | "Pending" | "Cancelled" | "InProgress" | "Complete";
8889
+ export type TrackingStatusDto = "Manual" | "Pending" | "Cancelled" | "InProgress" | "Completed";
8890
8890
  export declare class TrackingWorkOrderDto implements ITrackingWorkOrderDto {
8891
8891
  workOrderId: string;
8892
8892
  part?: PartDto | null;
@@ -10497,6 +10497,7 @@ export declare class MeasurementFormInstanceElementDto implements IMeasurementFo
10497
10497
  minimumDecimals?: number | null;
10498
10498
  maximumDecimals: number;
10499
10499
  machiningDimensions?: number | null;
10500
+ isStarted: boolean;
10500
10501
  values: MeasurementFormElementValueDto[];
10501
10502
  constructor(data?: IMeasurementFormInstanceElementDto);
10502
10503
  init(_data?: any): void;
@@ -10542,6 +10543,7 @@ export interface IMeasurementFormInstanceElementDto {
10542
10543
  minimumDecimals?: number | null;
10543
10544
  maximumDecimals: number;
10544
10545
  machiningDimensions?: number | null;
10546
+ isStarted: boolean;
10545
10547
  values: MeasurementFormElementValueDto[];
10546
10548
  }
10547
10549
  export declare class MeasurementFormElementValueDto implements IMeasurementFormElementValueDto {
@@ -34927,6 +34927,7 @@ export class MeasurementFormInstanceElementDto {
34927
34927
  this.minimumDecimals = _data["minimumDecimals"];
34928
34928
  this.maximumDecimals = _data["maximumDecimals"];
34929
34929
  this.machiningDimensions = _data["machiningDimensions"];
34930
+ this.isStarted = _data["isStarted"];
34930
34931
  if (Array.isArray(_data["values"])) {
34931
34932
  this.values = [];
34932
34933
  for (let item of _data["values"])
@@ -34980,6 +34981,7 @@ export class MeasurementFormInstanceElementDto {
34980
34981
  data["minimumDecimals"] = this.minimumDecimals;
34981
34982
  data["maximumDecimals"] = this.maximumDecimals;
34982
34983
  data["machiningDimensions"] = this.machiningDimensions;
34984
+ data["isStarted"] = this.isStarted;
34983
34985
  if (Array.isArray(this.values)) {
34984
34986
  data["values"] = [];
34985
34987
  for (let item of this.values)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ignos/api-client",
3
- "version": "20240625.0.9645",
3
+ "version": "20240626.0.9651",
4
4
  "description": "IGNOS API Client",
5
5
  "type": "module",
6
6
  "main": "lib/index.js",
@@ -39108,7 +39108,7 @@ export type BookingKindDto = "Forklift" | "General" | "ChipDisposal" | "Garbage"
39108
39108
 
39109
39109
  export type TransportKindDto = "NormalForklift" | "LargeForklift" | "SideLoadingForklift";
39110
39110
 
39111
- export type BookingStatusDto = "Pending" | "Cancelled" | "InProgress" | "Complete";
39111
+ export type BookingStatusDto = "Pending" | "Cancelled" | "InProgress" | "Completed";
39112
39112
 
39113
39113
  export class BookingItemDto implements IBookingItemDto {
39114
39114
  trackingId!: string;
@@ -39831,7 +39831,7 @@ export interface ITrackingEventDto {
39831
39831
  comment?: string | null;
39832
39832
  }
39833
39833
 
39834
- export type TrackingStatusDto = "Manual" | "Pending" | "Cancelled" | "InProgress" | "Complete";
39834
+ export type TrackingStatusDto = "Manual" | "Pending" | "Cancelled" | "InProgress" | "Completed";
39835
39835
 
39836
39836
  export class TrackingWorkOrderDto implements ITrackingWorkOrderDto {
39837
39837
  workOrderId!: string;
@@ -44433,6 +44433,7 @@ export class MeasurementFormInstanceElementDto implements IMeasurementFormInstan
44433
44433
  minimumDecimals?: number | null;
44434
44434
  maximumDecimals!: number;
44435
44435
  machiningDimensions?: number | null;
44436
+ isStarted!: boolean;
44436
44437
  values!: MeasurementFormElementValueDto[];
44437
44438
 
44438
44439
  constructor(data?: IMeasurementFormInstanceElementDto) {
@@ -44487,6 +44488,7 @@ export class MeasurementFormInstanceElementDto implements IMeasurementFormInstan
44487
44488
  this.minimumDecimals = _data["minimumDecimals"];
44488
44489
  this.maximumDecimals = _data["maximumDecimals"];
44489
44490
  this.machiningDimensions = _data["machiningDimensions"];
44491
+ this.isStarted = _data["isStarted"];
44490
44492
  if (Array.isArray(_data["values"])) {
44491
44493
  this.values = [] as any;
44492
44494
  for (let item of _data["values"])
@@ -44542,6 +44544,7 @@ export class MeasurementFormInstanceElementDto implements IMeasurementFormInstan
44542
44544
  data["minimumDecimals"] = this.minimumDecimals;
44543
44545
  data["maximumDecimals"] = this.maximumDecimals;
44544
44546
  data["machiningDimensions"] = this.machiningDimensions;
44547
+ data["isStarted"] = this.isStarted;
44545
44548
  if (Array.isArray(this.values)) {
44546
44549
  data["values"] = [];
44547
44550
  for (let item of this.values)
@@ -44590,6 +44593,7 @@ export interface IMeasurementFormInstanceElementDto {
44590
44593
  minimumDecimals?: number | null;
44591
44594
  maximumDecimals: number;
44592
44595
  machiningDimensions?: number | null;
44596
+ isStarted: boolean;
44593
44597
  values: MeasurementFormElementValueDto[];
44594
44598
  }
44595
44599