@ignos/api-client 20241202.0.10790 → 20241211.0.10819
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 +16 -14
- package/lib/ignosportal-api.js +2 -0
- package/package.json +1 -1
- package/src/ignosportal-api.ts +18 -14
package/lib/ignosportal-api.d.ts
CHANGED
|
@@ -2763,32 +2763,32 @@ export interface IListMachineUptimesTodayRequest {
|
|
|
2763
2763
|
utcOffset?: number;
|
|
2764
2764
|
}
|
|
2765
2765
|
export declare class PowerOnUtilizationList implements IPowerOnUtilizationList {
|
|
2766
|
-
machines?: Machine[]
|
|
2766
|
+
machines?: Machine[];
|
|
2767
2767
|
constructor(data?: IPowerOnUtilizationList);
|
|
2768
2768
|
init(_data?: any): void;
|
|
2769
2769
|
static fromJS(data: any): PowerOnUtilizationList;
|
|
2770
2770
|
toJSON(data?: any): any;
|
|
2771
2771
|
}
|
|
2772
2772
|
export interface IPowerOnUtilizationList {
|
|
2773
|
-
machines?: Machine[]
|
|
2773
|
+
machines?: Machine[];
|
|
2774
2774
|
}
|
|
2775
2775
|
export declare class Machine implements IMachine {
|
|
2776
|
-
externalId?: string
|
|
2776
|
+
externalId?: string;
|
|
2777
2777
|
id?: number;
|
|
2778
|
-
name?: string
|
|
2779
|
-
description?: string
|
|
2780
|
-
datapoints?: NumericNullableValueWithTimestamp[]
|
|
2778
|
+
name?: string;
|
|
2779
|
+
description?: string;
|
|
2780
|
+
datapoints?: NumericNullableValueWithTimestamp[];
|
|
2781
2781
|
constructor(data?: IMachine);
|
|
2782
2782
|
init(_data?: any): void;
|
|
2783
2783
|
static fromJS(data: any): Machine;
|
|
2784
2784
|
toJSON(data?: any): any;
|
|
2785
2785
|
}
|
|
2786
2786
|
export interface IMachine {
|
|
2787
|
-
externalId?: string
|
|
2787
|
+
externalId?: string;
|
|
2788
2788
|
id?: number;
|
|
2789
|
-
name?: string
|
|
2790
|
-
description?: string
|
|
2791
|
-
datapoints?: NumericNullableValueWithTimestamp[]
|
|
2789
|
+
name?: string;
|
|
2790
|
+
description?: string;
|
|
2791
|
+
datapoints?: NumericNullableValueWithTimestamp[];
|
|
2792
2792
|
}
|
|
2793
2793
|
export declare class NumericNullableValueWithTimestamp implements INumericNullableValueWithTimestamp {
|
|
2794
2794
|
timestamp?: number;
|
|
@@ -2916,6 +2916,7 @@ export interface IEngageAppSettings {
|
|
|
2916
2916
|
}
|
|
2917
2917
|
export declare class MoveAppSettings implements IMoveAppSettings {
|
|
2918
2918
|
engageMoveAutoPrompt?: boolean;
|
|
2919
|
+
defaultFromSuggestionAutoFillLocationId?: string | null;
|
|
2919
2920
|
constructor(data?: IMoveAppSettings);
|
|
2920
2921
|
init(_data?: any): void;
|
|
2921
2922
|
static fromJS(data: any): MoveAppSettings;
|
|
@@ -2923,6 +2924,7 @@ export declare class MoveAppSettings implements IMoveAppSettings {
|
|
|
2923
2924
|
}
|
|
2924
2925
|
export interface IMoveAppSettings {
|
|
2925
2926
|
engageMoveAutoPrompt?: boolean;
|
|
2927
|
+
defaultFromSuggestionAutoFillLocationId?: string | null;
|
|
2926
2928
|
}
|
|
2927
2929
|
export declare class UploadInfoDto implements IUploadInfoDto {
|
|
2928
2930
|
baseUrl?: string | null;
|
|
@@ -9186,8 +9188,8 @@ export interface IPostMaterialPickListRequest {
|
|
|
9186
9188
|
export declare class PickListMaterialLineDto implements IPickListMaterialLineDto {
|
|
9187
9189
|
lot: string;
|
|
9188
9190
|
partNumber: string;
|
|
9189
|
-
warehouse
|
|
9190
|
-
location
|
|
9191
|
+
warehouse?: string | null;
|
|
9192
|
+
location?: string | null;
|
|
9191
9193
|
end: boolean;
|
|
9192
9194
|
quantity: number;
|
|
9193
9195
|
batch?: string | null;
|
|
@@ -9199,8 +9201,8 @@ export declare class PickListMaterialLineDto implements IPickListMaterialLineDto
|
|
|
9199
9201
|
export interface IPickListMaterialLineDto {
|
|
9200
9202
|
lot: string;
|
|
9201
9203
|
partNumber: string;
|
|
9202
|
-
warehouse
|
|
9203
|
-
location
|
|
9204
|
+
warehouse?: string | null;
|
|
9205
|
+
location?: string | null;
|
|
9204
9206
|
end: boolean;
|
|
9205
9207
|
quantity: number;
|
|
9206
9208
|
batch?: string | null;
|
package/lib/ignosportal-api.js
CHANGED
|
@@ -20930,6 +20930,7 @@ export class MoveAppSettings {
|
|
|
20930
20930
|
init(_data) {
|
|
20931
20931
|
if (_data) {
|
|
20932
20932
|
this.engageMoveAutoPrompt = _data["engageMoveAutoPrompt"];
|
|
20933
|
+
this.defaultFromSuggestionAutoFillLocationId = _data["defaultFromSuggestionAutoFillLocationId"];
|
|
20933
20934
|
}
|
|
20934
20935
|
}
|
|
20935
20936
|
static fromJS(data) {
|
|
@@ -20941,6 +20942,7 @@ export class MoveAppSettings {
|
|
|
20941
20942
|
toJSON(data) {
|
|
20942
20943
|
data = typeof data === 'object' ? data : {};
|
|
20943
20944
|
data["engageMoveAutoPrompt"] = this.engageMoveAutoPrompt;
|
|
20945
|
+
data["defaultFromSuggestionAutoFillLocationId"] = this.defaultFromSuggestionAutoFillLocationId;
|
|
20944
20946
|
return data;
|
|
20945
20947
|
}
|
|
20946
20948
|
}
|
package/package.json
CHANGED
package/src/ignosportal-api.ts
CHANGED
|
@@ -22261,7 +22261,7 @@ export interface IListMachineUptimesTodayRequest {
|
|
|
22261
22261
|
}
|
|
22262
22262
|
|
|
22263
22263
|
export class PowerOnUtilizationList implements IPowerOnUtilizationList {
|
|
22264
|
-
machines?: Machine[]
|
|
22264
|
+
machines?: Machine[];
|
|
22265
22265
|
|
|
22266
22266
|
constructor(data?: IPowerOnUtilizationList) {
|
|
22267
22267
|
if (data) {
|
|
@@ -22301,15 +22301,15 @@ export class PowerOnUtilizationList implements IPowerOnUtilizationList {
|
|
|
22301
22301
|
}
|
|
22302
22302
|
|
|
22303
22303
|
export interface IPowerOnUtilizationList {
|
|
22304
|
-
machines?: Machine[]
|
|
22304
|
+
machines?: Machine[];
|
|
22305
22305
|
}
|
|
22306
22306
|
|
|
22307
22307
|
export class Machine implements IMachine {
|
|
22308
|
-
externalId?: string
|
|
22308
|
+
externalId?: string;
|
|
22309
22309
|
id?: number;
|
|
22310
|
-
name?: string
|
|
22311
|
-
description?: string
|
|
22312
|
-
datapoints?: NumericNullableValueWithTimestamp[]
|
|
22310
|
+
name?: string;
|
|
22311
|
+
description?: string;
|
|
22312
|
+
datapoints?: NumericNullableValueWithTimestamp[];
|
|
22313
22313
|
|
|
22314
22314
|
constructor(data?: IMachine) {
|
|
22315
22315
|
if (data) {
|
|
@@ -22357,11 +22357,11 @@ export class Machine implements IMachine {
|
|
|
22357
22357
|
}
|
|
22358
22358
|
|
|
22359
22359
|
export interface IMachine {
|
|
22360
|
-
externalId?: string
|
|
22360
|
+
externalId?: string;
|
|
22361
22361
|
id?: number;
|
|
22362
|
-
name?: string
|
|
22363
|
-
description?: string
|
|
22364
|
-
datapoints?: NumericNullableValueWithTimestamp[]
|
|
22362
|
+
name?: string;
|
|
22363
|
+
description?: string;
|
|
22364
|
+
datapoints?: NumericNullableValueWithTimestamp[];
|
|
22365
22365
|
}
|
|
22366
22366
|
|
|
22367
22367
|
export class NumericNullableValueWithTimestamp implements INumericNullableValueWithTimestamp {
|
|
@@ -22761,6 +22761,7 @@ export interface IEngageAppSettings {
|
|
|
22761
22761
|
|
|
22762
22762
|
export class MoveAppSettings implements IMoveAppSettings {
|
|
22763
22763
|
engageMoveAutoPrompt?: boolean;
|
|
22764
|
+
defaultFromSuggestionAutoFillLocationId?: string | null;
|
|
22764
22765
|
|
|
22765
22766
|
constructor(data?: IMoveAppSettings) {
|
|
22766
22767
|
if (data) {
|
|
@@ -22774,6 +22775,7 @@ export class MoveAppSettings implements IMoveAppSettings {
|
|
|
22774
22775
|
init(_data?: any) {
|
|
22775
22776
|
if (_data) {
|
|
22776
22777
|
this.engageMoveAutoPrompt = _data["engageMoveAutoPrompt"];
|
|
22778
|
+
this.defaultFromSuggestionAutoFillLocationId = _data["defaultFromSuggestionAutoFillLocationId"];
|
|
22777
22779
|
}
|
|
22778
22780
|
}
|
|
22779
22781
|
|
|
@@ -22787,12 +22789,14 @@ export class MoveAppSettings implements IMoveAppSettings {
|
|
|
22787
22789
|
toJSON(data?: any) {
|
|
22788
22790
|
data = typeof data === 'object' ? data : {};
|
|
22789
22791
|
data["engageMoveAutoPrompt"] = this.engageMoveAutoPrompt;
|
|
22792
|
+
data["defaultFromSuggestionAutoFillLocationId"] = this.defaultFromSuggestionAutoFillLocationId;
|
|
22790
22793
|
return data;
|
|
22791
22794
|
}
|
|
22792
22795
|
}
|
|
22793
22796
|
|
|
22794
22797
|
export interface IMoveAppSettings {
|
|
22795
22798
|
engageMoveAutoPrompt?: boolean;
|
|
22799
|
+
defaultFromSuggestionAutoFillLocationId?: string | null;
|
|
22796
22800
|
}
|
|
22797
22801
|
|
|
22798
22802
|
export class UploadInfoDto implements IUploadInfoDto {
|
|
@@ -41813,8 +41817,8 @@ export interface IPostMaterialPickListRequest {
|
|
|
41813
41817
|
export class PickListMaterialLineDto implements IPickListMaterialLineDto {
|
|
41814
41818
|
lot!: string;
|
|
41815
41819
|
partNumber!: string;
|
|
41816
|
-
warehouse
|
|
41817
|
-
location
|
|
41820
|
+
warehouse?: string | null;
|
|
41821
|
+
location?: string | null;
|
|
41818
41822
|
end!: boolean;
|
|
41819
41823
|
quantity!: number;
|
|
41820
41824
|
batch?: string | null;
|
|
@@ -41863,8 +41867,8 @@ export class PickListMaterialLineDto implements IPickListMaterialLineDto {
|
|
|
41863
41867
|
export interface IPickListMaterialLineDto {
|
|
41864
41868
|
lot: string;
|
|
41865
41869
|
partNumber: string;
|
|
41866
|
-
warehouse
|
|
41867
|
-
location
|
|
41870
|
+
warehouse?: string | null;
|
|
41871
|
+
location?: string | null;
|
|
41868
41872
|
end: boolean;
|
|
41869
41873
|
quantity: number;
|
|
41870
41874
|
batch?: string | null;
|