@ignos/api-client 20240613.0.9536 → 20240614.0.9570

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.
@@ -4132,6 +4132,7 @@ export declare class BookingItemDto implements IBookingItemDto {
4132
4132
  trackingId: string;
4133
4133
  workOrderId: string;
4134
4134
  material?: string | null;
4135
+ comment?: string | null;
4135
4136
  constructor(data?: IBookingItemDto);
4136
4137
  init(_data?: any): void;
4137
4138
  static fromJS(data: any): BookingItemDto;
@@ -4141,6 +4142,7 @@ export interface IBookingItemDto {
4141
4142
  trackingId: string;
4142
4143
  workOrderId: string;
4143
4144
  material?: string | null;
4145
+ comment?: string | null;
4144
4146
  }
4145
4147
  export declare class LocationDto implements ILocationDto {
4146
4148
  locationId: string;
@@ -4162,6 +4164,7 @@ export type LocationKindDto = "Warehouse" | "Zone" | "Location";
4162
4164
  export declare class BookingRequestListDto implements IBookingRequestListDto {
4163
4165
  pageSize?: number | null;
4164
4166
  bookingStatusFilter?: BookingStatusDto[] | null;
4167
+ bookingOrder?: BookingOrderDto;
4165
4168
  continuationToken?: string | null;
4166
4169
  constructor(data?: IBookingRequestListDto);
4167
4170
  init(_data?: any): void;
@@ -4171,8 +4174,10 @@ export declare class BookingRequestListDto implements IBookingRequestListDto {
4171
4174
  export interface IBookingRequestListDto {
4172
4175
  pageSize?: number | null;
4173
4176
  bookingStatusFilter?: BookingStatusDto[] | null;
4177
+ bookingOrder?: BookingOrderDto;
4174
4178
  continuationToken?: string | null;
4175
4179
  }
4180
+ export type BookingOrderDto = "Ascending" | "Descending";
4176
4181
  export declare class BookingRequestDto implements IBookingRequestDto {
4177
4182
  bookingType: BookingTypeDto;
4178
4183
  items: BookingItemRequestDto[];
@@ -4203,7 +4208,6 @@ export interface IBookingItemRequestDto {
4203
4208
  }
4204
4209
  export declare class BookingUpdateDto implements IBookingUpdateDto {
4205
4210
  bookingId: string;
4206
- comment?: string | null;
4207
4211
  constructor(data?: IBookingUpdateDto);
4208
4212
  init(_data?: any): void;
4209
4213
  static fromJS(data: any): BookingUpdateDto;
@@ -4211,11 +4215,9 @@ export declare class BookingUpdateDto implements IBookingUpdateDto {
4211
4215
  }
4212
4216
  export interface IBookingUpdateDto {
4213
4217
  bookingId: string;
4214
- comment?: string | null;
4215
4218
  }
4216
4219
  export declare class BookingDeliveryUpdateDto implements IBookingDeliveryUpdateDto {
4217
4220
  bookingId: string;
4218
- comment?: string | null;
4219
4221
  deliveryExceptions?: BookingDeliveryExceptionDto[] | null;
4220
4222
  constructor(data?: IBookingDeliveryUpdateDto);
4221
4223
  init(_data?: any): void;
@@ -4224,7 +4226,6 @@ export declare class BookingDeliveryUpdateDto implements IBookingDeliveryUpdateD
4224
4226
  }
4225
4227
  export interface IBookingDeliveryUpdateDto {
4226
4228
  bookingId: string;
4227
- comment?: string | null;
4228
4229
  deliveryExceptions?: BookingDeliveryExceptionDto[] | null;
4229
4230
  }
4230
4231
  export declare class BookingDeliveryExceptionDto implements IBookingDeliveryExceptionDto {
@@ -1,6 +1,6 @@
1
1
  //----------------------
2
2
  // <auto-generated>
3
- // Generated using the NSwag toolchain v14.0.7.0 (NJsonSchema v11.0.0.0 (Newtonsoft.Json v13.0.0.0)) (http://NSwag.org)
3
+ // Generated using the NSwag toolchain v14.0.8.0 (NJsonSchema v11.0.1.0 (Newtonsoft.Json v13.0.0.0)) (http://NSwag.org)
4
4
  // </auto-generated>
5
5
  //----------------------
6
6
  /* tslint:disable */
@@ -22440,6 +22440,7 @@ export class BookingItemDto {
22440
22440
  this.trackingId = _data["trackingId"];
22441
22441
  this.workOrderId = _data["workOrderId"];
22442
22442
  this.material = _data["material"];
22443
+ this.comment = _data["comment"];
22443
22444
  }
22444
22445
  }
22445
22446
  static fromJS(data) {
@@ -22453,6 +22454,7 @@ export class BookingItemDto {
22453
22454
  data["trackingId"] = this.trackingId;
22454
22455
  data["workOrderId"] = this.workOrderId;
22455
22456
  data["material"] = this.material;
22457
+ data["comment"] = this.comment;
22456
22458
  return data;
22457
22459
  }
22458
22460
  }
@@ -22505,6 +22507,7 @@ export class BookingRequestListDto {
22505
22507
  for (let item of _data["bookingStatusFilter"])
22506
22508
  this.bookingStatusFilter.push(item);
22507
22509
  }
22510
+ this.bookingOrder = _data["bookingOrder"];
22508
22511
  this.continuationToken = _data["continuationToken"];
22509
22512
  }
22510
22513
  }
@@ -22522,6 +22525,7 @@ export class BookingRequestListDto {
22522
22525
  for (let item of this.bookingStatusFilter)
22523
22526
  data["bookingStatusFilter"].push(item);
22524
22527
  }
22528
+ data["bookingOrder"] = this.bookingOrder;
22525
22529
  data["continuationToken"] = this.continuationToken;
22526
22530
  return data;
22527
22531
  }
@@ -22609,7 +22613,6 @@ export class BookingUpdateDto {
22609
22613
  init(_data) {
22610
22614
  if (_data) {
22611
22615
  this.bookingId = _data["bookingId"];
22612
- this.comment = _data["comment"];
22613
22616
  }
22614
22617
  }
22615
22618
  static fromJS(data) {
@@ -22621,7 +22624,6 @@ export class BookingUpdateDto {
22621
22624
  toJSON(data) {
22622
22625
  data = typeof data === 'object' ? data : {};
22623
22626
  data["bookingId"] = this.bookingId;
22624
- data["comment"] = this.comment;
22625
22627
  return data;
22626
22628
  }
22627
22629
  }
@@ -22637,7 +22639,6 @@ export class BookingDeliveryUpdateDto {
22637
22639
  init(_data) {
22638
22640
  if (_data) {
22639
22641
  this.bookingId = _data["bookingId"];
22640
- this.comment = _data["comment"];
22641
22642
  if (Array.isArray(_data["deliveryExceptions"])) {
22642
22643
  this.deliveryExceptions = [];
22643
22644
  for (let item of _data["deliveryExceptions"])
@@ -22654,7 +22655,6 @@ export class BookingDeliveryUpdateDto {
22654
22655
  toJSON(data) {
22655
22656
  data = typeof data === 'object' ? data : {};
22656
22657
  data["bookingId"] = this.bookingId;
22657
- data["comment"] = this.comment;
22658
22658
  if (Array.isArray(this.deliveryExceptions)) {
22659
22659
  data["deliveryExceptions"] = [];
22660
22660
  for (let item of this.deliveryExceptions)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ignos/api-client",
3
- "version": "20240613.0.9536",
3
+ "version": "20240614.0.9570",
4
4
  "description": "IGNOS API Client",
5
5
  "type": "module",
6
6
  "main": "lib/index.js",
@@ -1,6 +1,6 @@
1
1
  //----------------------
2
2
  // <auto-generated>
3
- // Generated using the NSwag toolchain v14.0.7.0 (NJsonSchema v11.0.0.0 (Newtonsoft.Json v13.0.0.0)) (http://NSwag.org)
3
+ // Generated using the NSwag toolchain v14.0.8.0 (NJsonSchema v11.0.1.0 (Newtonsoft.Json v13.0.0.0)) (http://NSwag.org)
4
4
  // </auto-generated>
5
5
  //----------------------
6
6
 
@@ -25596,6 +25596,7 @@ export class BookingItemDto implements IBookingItemDto {
25596
25596
  trackingId!: string;
25597
25597
  workOrderId!: string;
25598
25598
  material?: string | null;
25599
+ comment?: string | null;
25599
25600
 
25600
25601
  constructor(data?: IBookingItemDto) {
25601
25602
  if (data) {
@@ -25611,6 +25612,7 @@ export class BookingItemDto implements IBookingItemDto {
25611
25612
  this.trackingId = _data["trackingId"];
25612
25613
  this.workOrderId = _data["workOrderId"];
25613
25614
  this.material = _data["material"];
25615
+ this.comment = _data["comment"];
25614
25616
  }
25615
25617
  }
25616
25618
 
@@ -25626,6 +25628,7 @@ export class BookingItemDto implements IBookingItemDto {
25626
25628
  data["trackingId"] = this.trackingId;
25627
25629
  data["workOrderId"] = this.workOrderId;
25628
25630
  data["material"] = this.material;
25631
+ data["comment"] = this.comment;
25629
25632
  return data;
25630
25633
  }
25631
25634
  }
@@ -25634,6 +25637,7 @@ export interface IBookingItemDto {
25634
25637
  trackingId: string;
25635
25638
  workOrderId: string;
25636
25639
  material?: string | null;
25640
+ comment?: string | null;
25637
25641
  }
25638
25642
 
25639
25643
  export class LocationDto implements ILocationDto {
@@ -25689,6 +25693,7 @@ export type LocationKindDto = "Warehouse" | "Zone" | "Location";
25689
25693
  export class BookingRequestListDto implements IBookingRequestListDto {
25690
25694
  pageSize?: number | null;
25691
25695
  bookingStatusFilter?: BookingStatusDto[] | null;
25696
+ bookingOrder?: BookingOrderDto;
25692
25697
  continuationToken?: string | null;
25693
25698
 
25694
25699
  constructor(data?: IBookingRequestListDto) {
@@ -25708,6 +25713,7 @@ export class BookingRequestListDto implements IBookingRequestListDto {
25708
25713
  for (let item of _data["bookingStatusFilter"])
25709
25714
  this.bookingStatusFilter!.push(item);
25710
25715
  }
25716
+ this.bookingOrder = _data["bookingOrder"];
25711
25717
  this.continuationToken = _data["continuationToken"];
25712
25718
  }
25713
25719
  }
@@ -25727,6 +25733,7 @@ export class BookingRequestListDto implements IBookingRequestListDto {
25727
25733
  for (let item of this.bookingStatusFilter)
25728
25734
  data["bookingStatusFilter"].push(item);
25729
25735
  }
25736
+ data["bookingOrder"] = this.bookingOrder;
25730
25737
  data["continuationToken"] = this.continuationToken;
25731
25738
  return data;
25732
25739
  }
@@ -25735,9 +25742,12 @@ export class BookingRequestListDto implements IBookingRequestListDto {
25735
25742
  export interface IBookingRequestListDto {
25736
25743
  pageSize?: number | null;
25737
25744
  bookingStatusFilter?: BookingStatusDto[] | null;
25745
+ bookingOrder?: BookingOrderDto;
25738
25746
  continuationToken?: string | null;
25739
25747
  }
25740
25748
 
25749
+ export type BookingOrderDto = "Ascending" | "Descending";
25750
+
25741
25751
  export class BookingRequestDto implements IBookingRequestDto {
25742
25752
  bookingType!: BookingTypeDto;
25743
25753
  items!: BookingItemRequestDto[];
@@ -25839,7 +25849,6 @@ export interface IBookingItemRequestDto {
25839
25849
 
25840
25850
  export class BookingUpdateDto implements IBookingUpdateDto {
25841
25851
  bookingId!: string;
25842
- comment?: string | null;
25843
25852
 
25844
25853
  constructor(data?: IBookingUpdateDto) {
25845
25854
  if (data) {
@@ -25853,7 +25862,6 @@ export class BookingUpdateDto implements IBookingUpdateDto {
25853
25862
  init(_data?: any) {
25854
25863
  if (_data) {
25855
25864
  this.bookingId = _data["bookingId"];
25856
- this.comment = _data["comment"];
25857
25865
  }
25858
25866
  }
25859
25867
 
@@ -25867,19 +25875,16 @@ export class BookingUpdateDto implements IBookingUpdateDto {
25867
25875
  toJSON(data?: any) {
25868
25876
  data = typeof data === 'object' ? data : {};
25869
25877
  data["bookingId"] = this.bookingId;
25870
- data["comment"] = this.comment;
25871
25878
  return data;
25872
25879
  }
25873
25880
  }
25874
25881
 
25875
25882
  export interface IBookingUpdateDto {
25876
25883
  bookingId: string;
25877
- comment?: string | null;
25878
25884
  }
25879
25885
 
25880
25886
  export class BookingDeliveryUpdateDto implements IBookingDeliveryUpdateDto {
25881
25887
  bookingId!: string;
25882
- comment?: string | null;
25883
25888
  deliveryExceptions?: BookingDeliveryExceptionDto[] | null;
25884
25889
 
25885
25890
  constructor(data?: IBookingDeliveryUpdateDto) {
@@ -25894,7 +25899,6 @@ export class BookingDeliveryUpdateDto implements IBookingDeliveryUpdateDto {
25894
25899
  init(_data?: any) {
25895
25900
  if (_data) {
25896
25901
  this.bookingId = _data["bookingId"];
25897
- this.comment = _data["comment"];
25898
25902
  if (Array.isArray(_data["deliveryExceptions"])) {
25899
25903
  this.deliveryExceptions = [] as any;
25900
25904
  for (let item of _data["deliveryExceptions"])
@@ -25913,7 +25917,6 @@ export class BookingDeliveryUpdateDto implements IBookingDeliveryUpdateDto {
25913
25917
  toJSON(data?: any) {
25914
25918
  data = typeof data === 'object' ? data : {};
25915
25919
  data["bookingId"] = this.bookingId;
25916
- data["comment"] = this.comment;
25917
25920
  if (Array.isArray(this.deliveryExceptions)) {
25918
25921
  data["deliveryExceptions"] = [];
25919
25922
  for (let item of this.deliveryExceptions)
@@ -25925,7 +25928,6 @@ export class BookingDeliveryUpdateDto implements IBookingDeliveryUpdateDto {
25925
25928
 
25926
25929
  export interface IBookingDeliveryUpdateDto {
25927
25930
  bookingId: string;
25928
- comment?: string | null;
25929
25931
  deliveryExceptions?: BookingDeliveryExceptionDto[] | null;
25930
25932
  }
25931
25933