@ignos/api-client 20240910.0.10290 → 20240910.0.10294

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.
@@ -8134,6 +8134,7 @@ export declare class BookingItemRequestDto implements IBookingItemRequestDto {
8134
8134
  trackingId: string;
8135
8135
  fromLocationId: string;
8136
8136
  toLocationId: string;
8137
+ transportKind: TransportKindDto;
8137
8138
  comment?: string | null;
8138
8139
  constructor(data?: IBookingItemRequestDto);
8139
8140
  init(_data?: any): void;
@@ -8145,10 +8146,10 @@ export interface IBookingItemRequestDto {
8145
8146
  trackingId: string;
8146
8147
  fromLocationId: string;
8147
8148
  toLocationId: string;
8149
+ transportKind: TransportKindDto;
8148
8150
  comment?: string | null;
8149
8151
  }
8150
8152
  export declare class BookingTransportRequestDto implements IBookingTransportRequestDto {
8151
- transportKind: TransportKindDto;
8152
8153
  items: BookingItemRequestDto[];
8153
8154
  constructor(data?: IBookingTransportRequestDto);
8154
8155
  init(_data?: any): void;
@@ -8156,7 +8157,6 @@ export declare class BookingTransportRequestDto implements IBookingTransportRequ
8156
8157
  toJSON(data?: any): any;
8157
8158
  }
8158
8159
  export interface IBookingTransportRequestDto {
8159
- transportKind: TransportKindDto;
8160
8160
  items: BookingItemRequestDto[];
8161
8161
  }
8162
8162
  export declare class BookingGeneralRequestDto implements IBookingGeneralRequestDto {
@@ -31271,6 +31271,7 @@ export class BookingItemRequestDto {
31271
31271
  this.trackingId = _data["trackingId"];
31272
31272
  this.fromLocationId = _data["fromLocationId"];
31273
31273
  this.toLocationId = _data["toLocationId"];
31274
+ this.transportKind = _data["transportKind"];
31274
31275
  this.comment = _data["comment"];
31275
31276
  }
31276
31277
  }
@@ -31286,6 +31287,7 @@ export class BookingItemRequestDto {
31286
31287
  data["trackingId"] = this.trackingId;
31287
31288
  data["fromLocationId"] = this.fromLocationId;
31288
31289
  data["toLocationId"] = this.toLocationId;
31290
+ data["transportKind"] = this.transportKind;
31289
31291
  data["comment"] = this.comment;
31290
31292
  return data;
31291
31293
  }
@@ -31304,7 +31306,6 @@ export class BookingTransportRequestDto {
31304
31306
  }
31305
31307
  init(_data) {
31306
31308
  if (_data) {
31307
- this.transportKind = _data["transportKind"];
31308
31309
  if (Array.isArray(_data["items"])) {
31309
31310
  this.items = [];
31310
31311
  for (let item of _data["items"])
@@ -31320,7 +31321,6 @@ export class BookingTransportRequestDto {
31320
31321
  }
31321
31322
  toJSON(data) {
31322
31323
  data = typeof data === 'object' ? data : {};
31323
- data["transportKind"] = this.transportKind;
31324
31324
  if (Array.isArray(this.items)) {
31325
31325
  data["items"] = [];
31326
31326
  for (let item of this.items)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ignos/api-client",
3
- "version": "20240910.0.10290",
3
+ "version": "20240910.0.10294",
4
4
  "description": "IGNOS API Client",
5
5
  "type": "module",
6
6
  "main": "lib/index.js",
@@ -38373,6 +38373,7 @@ export class BookingItemRequestDto implements IBookingItemRequestDto {
38373
38373
  trackingId!: string;
38374
38374
  fromLocationId!: string;
38375
38375
  toLocationId!: string;
38376
+ transportKind!: TransportKindDto;
38376
38377
  comment?: string | null;
38377
38378
 
38378
38379
  constructor(data?: IBookingItemRequestDto) {
@@ -38390,6 +38391,7 @@ export class BookingItemRequestDto implements IBookingItemRequestDto {
38390
38391
  this.trackingId = _data["trackingId"];
38391
38392
  this.fromLocationId = _data["fromLocationId"];
38392
38393
  this.toLocationId = _data["toLocationId"];
38394
+ this.transportKind = _data["transportKind"];
38393
38395
  this.comment = _data["comment"];
38394
38396
  }
38395
38397
  }
@@ -38407,6 +38409,7 @@ export class BookingItemRequestDto implements IBookingItemRequestDto {
38407
38409
  data["trackingId"] = this.trackingId;
38408
38410
  data["fromLocationId"] = this.fromLocationId;
38409
38411
  data["toLocationId"] = this.toLocationId;
38412
+ data["transportKind"] = this.transportKind;
38410
38413
  data["comment"] = this.comment;
38411
38414
  return data;
38412
38415
  }
@@ -38417,11 +38420,11 @@ export interface IBookingItemRequestDto {
38417
38420
  trackingId: string;
38418
38421
  fromLocationId: string;
38419
38422
  toLocationId: string;
38423
+ transportKind: TransportKindDto;
38420
38424
  comment?: string | null;
38421
38425
  }
38422
38426
 
38423
38427
  export class BookingTransportRequestDto implements IBookingTransportRequestDto {
38424
- transportKind!: TransportKindDto;
38425
38428
  items!: BookingItemRequestDto[];
38426
38429
 
38427
38430
  constructor(data?: IBookingTransportRequestDto) {
@@ -38438,7 +38441,6 @@ export class BookingTransportRequestDto implements IBookingTransportRequestDto {
38438
38441
 
38439
38442
  init(_data?: any) {
38440
38443
  if (_data) {
38441
- this.transportKind = _data["transportKind"];
38442
38444
  if (Array.isArray(_data["items"])) {
38443
38445
  this.items = [] as any;
38444
38446
  for (let item of _data["items"])
@@ -38456,7 +38458,6 @@ export class BookingTransportRequestDto implements IBookingTransportRequestDto {
38456
38458
 
38457
38459
  toJSON(data?: any) {
38458
38460
  data = typeof data === 'object' ? data : {};
38459
- data["transportKind"] = this.transportKind;
38460
38461
  if (Array.isArray(this.items)) {
38461
38462
  data["items"] = [];
38462
38463
  for (let item of this.items)
@@ -38467,7 +38468,6 @@ export class BookingTransportRequestDto implements IBookingTransportRequestDto {
38467
38468
  }
38468
38469
 
38469
38470
  export interface IBookingTransportRequestDto {
38470
- transportKind: TransportKindDto;
38471
38471
  items: BookingItemRequestDto[];
38472
38472
  }
38473
38473