@ignos/api-client 20241004.0.10504 → 20241004.0.10507

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.
@@ -2868,6 +2868,7 @@ export interface IListUsersRequest {
2868
2868
  }
2869
2869
  export declare class EngageAppSettings implements IEngageAppSettings {
2870
2870
  includeDrawingInRouteCardPrint?: boolean;
2871
+ routeCardPrintInLandscapeOrientation?: boolean;
2871
2872
  constructor(data?: IEngageAppSettings);
2872
2873
  init(_data?: any): void;
2873
2874
  static fromJS(data: any): EngageAppSettings;
@@ -2875,6 +2876,7 @@ export declare class EngageAppSettings implements IEngageAppSettings {
2875
2876
  }
2876
2877
  export interface IEngageAppSettings {
2877
2878
  includeDrawingInRouteCardPrint?: boolean;
2879
+ routeCardPrintInLandscapeOrientation?: boolean;
2878
2880
  }
2879
2881
  export declare class MoveAppSettings implements IMoveAppSettings {
2880
2882
  engageMoveAutoPrompt?: boolean;
@@ -20660,6 +20660,7 @@ export class EngageAppSettings {
20660
20660
  init(_data) {
20661
20661
  if (_data) {
20662
20662
  this.includeDrawingInRouteCardPrint = _data["includeDrawingInRouteCardPrint"];
20663
+ this.routeCardPrintInLandscapeOrientation = _data["routeCardPrintInLandscapeOrientation"];
20663
20664
  }
20664
20665
  }
20665
20666
  static fromJS(data) {
@@ -20671,6 +20672,7 @@ export class EngageAppSettings {
20671
20672
  toJSON(data) {
20672
20673
  data = typeof data === 'object' ? data : {};
20673
20674
  data["includeDrawingInRouteCardPrint"] = this.includeDrawingInRouteCardPrint;
20675
+ data["routeCardPrintInLandscapeOrientation"] = this.routeCardPrintInLandscapeOrientation;
20674
20676
  return data;
20675
20677
  }
20676
20678
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ignos/api-client",
3
- "version": "20241004.0.10504",
3
+ "version": "20241004.0.10507",
4
4
  "description": "IGNOS API Client",
5
5
  "type": "module",
6
6
  "main": "lib/index.js",
@@ -22459,6 +22459,7 @@ export interface IListUsersRequest {
22459
22459
 
22460
22460
  export class EngageAppSettings implements IEngageAppSettings {
22461
22461
  includeDrawingInRouteCardPrint?: boolean;
22462
+ routeCardPrintInLandscapeOrientation?: boolean;
22462
22463
 
22463
22464
  constructor(data?: IEngageAppSettings) {
22464
22465
  if (data) {
@@ -22472,6 +22473,7 @@ export class EngageAppSettings implements IEngageAppSettings {
22472
22473
  init(_data?: any) {
22473
22474
  if (_data) {
22474
22475
  this.includeDrawingInRouteCardPrint = _data["includeDrawingInRouteCardPrint"];
22476
+ this.routeCardPrintInLandscapeOrientation = _data["routeCardPrintInLandscapeOrientation"];
22475
22477
  }
22476
22478
  }
22477
22479
 
@@ -22485,12 +22487,14 @@ export class EngageAppSettings implements IEngageAppSettings {
22485
22487
  toJSON(data?: any) {
22486
22488
  data = typeof data === 'object' ? data : {};
22487
22489
  data["includeDrawingInRouteCardPrint"] = this.includeDrawingInRouteCardPrint;
22490
+ data["routeCardPrintInLandscapeOrientation"] = this.routeCardPrintInLandscapeOrientation;
22488
22491
  return data;
22489
22492
  }
22490
22493
  }
22491
22494
 
22492
22495
  export interface IEngageAppSettings {
22493
22496
  includeDrawingInRouteCardPrint?: boolean;
22497
+ routeCardPrintInLandscapeOrientation?: boolean;
22494
22498
  }
22495
22499
 
22496
22500
  export class MoveAppSettings implements IMoveAppSettings {