@ignos/api-client 20250220.0.11224 → 20250221.0.11233
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.
package/lib/ignosportal-api.d.ts
CHANGED
|
@@ -3005,6 +3005,7 @@ export interface IListUsersRequest {
|
|
|
3005
3005
|
export declare class RouteCardAppSettings implements IRouteCardAppSettings {
|
|
3006
3006
|
includeDrawingInRouteCardPrint?: boolean;
|
|
3007
3007
|
routeCardPrintInLandscapeOrientation?: boolean;
|
|
3008
|
+
excludeOperationsInRouteCardPrint?: boolean;
|
|
3008
3009
|
constructor(data?: IRouteCardAppSettings);
|
|
3009
3010
|
init(_data?: any): void;
|
|
3010
3011
|
static fromJS(data: any): RouteCardAppSettings;
|
|
@@ -3013,6 +3014,7 @@ export declare class RouteCardAppSettings implements IRouteCardAppSettings {
|
|
|
3013
3014
|
export interface IRouteCardAppSettings {
|
|
3014
3015
|
includeDrawingInRouteCardPrint?: boolean;
|
|
3015
3016
|
routeCardPrintInLandscapeOrientation?: boolean;
|
|
3017
|
+
excludeOperationsInRouteCardPrint?: boolean;
|
|
3016
3018
|
}
|
|
3017
3019
|
export declare class MoveAppSettings implements IMoveAppSettings {
|
|
3018
3020
|
engageMoveAutoPrompt?: boolean;
|
package/lib/ignosportal-api.js
CHANGED
|
@@ -21816,6 +21816,7 @@ export class RouteCardAppSettings {
|
|
|
21816
21816
|
if (_data) {
|
|
21817
21817
|
this.includeDrawingInRouteCardPrint = _data["includeDrawingInRouteCardPrint"];
|
|
21818
21818
|
this.routeCardPrintInLandscapeOrientation = _data["routeCardPrintInLandscapeOrientation"];
|
|
21819
|
+
this.excludeOperationsInRouteCardPrint = _data["excludeOperationsInRouteCardPrint"];
|
|
21819
21820
|
}
|
|
21820
21821
|
}
|
|
21821
21822
|
static fromJS(data) {
|
|
@@ -21828,6 +21829,7 @@ export class RouteCardAppSettings {
|
|
|
21828
21829
|
data = typeof data === 'object' ? data : {};
|
|
21829
21830
|
data["includeDrawingInRouteCardPrint"] = this.includeDrawingInRouteCardPrint;
|
|
21830
21831
|
data["routeCardPrintInLandscapeOrientation"] = this.routeCardPrintInLandscapeOrientation;
|
|
21832
|
+
data["excludeOperationsInRouteCardPrint"] = this.excludeOperationsInRouteCardPrint;
|
|
21831
21833
|
return data;
|
|
21832
21834
|
}
|
|
21833
21835
|
}
|
package/package.json
CHANGED
package/src/ignosportal-api.ts
CHANGED
|
@@ -23689,6 +23689,7 @@ export interface IListUsersRequest {
|
|
|
23689
23689
|
export class RouteCardAppSettings implements IRouteCardAppSettings {
|
|
23690
23690
|
includeDrawingInRouteCardPrint?: boolean;
|
|
23691
23691
|
routeCardPrintInLandscapeOrientation?: boolean;
|
|
23692
|
+
excludeOperationsInRouteCardPrint?: boolean;
|
|
23692
23693
|
|
|
23693
23694
|
constructor(data?: IRouteCardAppSettings) {
|
|
23694
23695
|
if (data) {
|
|
@@ -23703,6 +23704,7 @@ export class RouteCardAppSettings implements IRouteCardAppSettings {
|
|
|
23703
23704
|
if (_data) {
|
|
23704
23705
|
this.includeDrawingInRouteCardPrint = _data["includeDrawingInRouteCardPrint"];
|
|
23705
23706
|
this.routeCardPrintInLandscapeOrientation = _data["routeCardPrintInLandscapeOrientation"];
|
|
23707
|
+
this.excludeOperationsInRouteCardPrint = _data["excludeOperationsInRouteCardPrint"];
|
|
23706
23708
|
}
|
|
23707
23709
|
}
|
|
23708
23710
|
|
|
@@ -23717,6 +23719,7 @@ export class RouteCardAppSettings implements IRouteCardAppSettings {
|
|
|
23717
23719
|
data = typeof data === 'object' ? data : {};
|
|
23718
23720
|
data["includeDrawingInRouteCardPrint"] = this.includeDrawingInRouteCardPrint;
|
|
23719
23721
|
data["routeCardPrintInLandscapeOrientation"] = this.routeCardPrintInLandscapeOrientation;
|
|
23722
|
+
data["excludeOperationsInRouteCardPrint"] = this.excludeOperationsInRouteCardPrint;
|
|
23720
23723
|
return data;
|
|
23721
23724
|
}
|
|
23722
23725
|
}
|
|
@@ -23724,6 +23727,7 @@ export class RouteCardAppSettings implements IRouteCardAppSettings {
|
|
|
23724
23727
|
export interface IRouteCardAppSettings {
|
|
23725
23728
|
includeDrawingInRouteCardPrint?: boolean;
|
|
23726
23729
|
routeCardPrintInLandscapeOrientation?: boolean;
|
|
23730
|
+
excludeOperationsInRouteCardPrint?: boolean;
|
|
23727
23731
|
}
|
|
23728
23732
|
|
|
23729
23733
|
export class MoveAppSettings implements IMoveAppSettings {
|