@ignos/api-client 20251006.0.12769-alpha → 20251006.0.12774-alpha
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
|
@@ -11247,6 +11247,7 @@ export declare class SurroundingOperationDto implements ISurroundingOperationDto
|
|
|
11247
11247
|
resourceDepartmentName?: string | null;
|
|
11248
11248
|
producedQuantity: number;
|
|
11249
11249
|
scrappedQuantity: number;
|
|
11250
|
+
earlierOperationsScrappedQuantity: number;
|
|
11250
11251
|
startedQuantity?: number | null;
|
|
11251
11252
|
constructor(data?: ISurroundingOperationDto);
|
|
11252
11253
|
init(_data?: any): void;
|
|
@@ -11269,6 +11270,7 @@ export interface ISurroundingOperationDto {
|
|
|
11269
11270
|
resourceDepartmentName?: string | null;
|
|
11270
11271
|
producedQuantity: number;
|
|
11271
11272
|
scrappedQuantity: number;
|
|
11273
|
+
earlierOperationsScrappedQuantity: number;
|
|
11272
11274
|
startedQuantity?: number | null;
|
|
11273
11275
|
}
|
|
11274
11276
|
export declare class OperationPrerequisitesDto implements IOperationPrerequisitesDto {
|
package/lib/ignosportal-api.js
CHANGED
|
@@ -40731,6 +40731,7 @@ export class SurroundingOperationDto {
|
|
|
40731
40731
|
this.resourceDepartmentName = _data["resourceDepartmentName"];
|
|
40732
40732
|
this.producedQuantity = _data["producedQuantity"];
|
|
40733
40733
|
this.scrappedQuantity = _data["scrappedQuantity"];
|
|
40734
|
+
this.earlierOperationsScrappedQuantity = _data["earlierOperationsScrappedQuantity"];
|
|
40734
40735
|
this.startedQuantity = _data["startedQuantity"];
|
|
40735
40736
|
}
|
|
40736
40737
|
}
|
|
@@ -40757,6 +40758,7 @@ export class SurroundingOperationDto {
|
|
|
40757
40758
|
data["resourceDepartmentName"] = this.resourceDepartmentName;
|
|
40758
40759
|
data["producedQuantity"] = this.producedQuantity;
|
|
40759
40760
|
data["scrappedQuantity"] = this.scrappedQuantity;
|
|
40761
|
+
data["earlierOperationsScrappedQuantity"] = this.earlierOperationsScrappedQuantity;
|
|
40760
40762
|
data["startedQuantity"] = this.startedQuantity;
|
|
40761
40763
|
return data;
|
|
40762
40764
|
}
|
package/package.json
CHANGED
package/src/ignosportal-api.ts
CHANGED
|
@@ -50736,6 +50736,7 @@ export class SurroundingOperationDto implements ISurroundingOperationDto {
|
|
|
50736
50736
|
resourceDepartmentName?: string | null;
|
|
50737
50737
|
producedQuantity!: number;
|
|
50738
50738
|
scrappedQuantity!: number;
|
|
50739
|
+
earlierOperationsScrappedQuantity!: number;
|
|
50739
50740
|
startedQuantity?: number | null;
|
|
50740
50741
|
|
|
50741
50742
|
constructor(data?: ISurroundingOperationDto) {
|
|
@@ -50764,6 +50765,7 @@ export class SurroundingOperationDto implements ISurroundingOperationDto {
|
|
|
50764
50765
|
this.resourceDepartmentName = _data["resourceDepartmentName"];
|
|
50765
50766
|
this.producedQuantity = _data["producedQuantity"];
|
|
50766
50767
|
this.scrappedQuantity = _data["scrappedQuantity"];
|
|
50768
|
+
this.earlierOperationsScrappedQuantity = _data["earlierOperationsScrappedQuantity"];
|
|
50767
50769
|
this.startedQuantity = _data["startedQuantity"];
|
|
50768
50770
|
}
|
|
50769
50771
|
}
|
|
@@ -50792,6 +50794,7 @@ export class SurroundingOperationDto implements ISurroundingOperationDto {
|
|
|
50792
50794
|
data["resourceDepartmentName"] = this.resourceDepartmentName;
|
|
50793
50795
|
data["producedQuantity"] = this.producedQuantity;
|
|
50794
50796
|
data["scrappedQuantity"] = this.scrappedQuantity;
|
|
50797
|
+
data["earlierOperationsScrappedQuantity"] = this.earlierOperationsScrappedQuantity;
|
|
50795
50798
|
data["startedQuantity"] = this.startedQuantity;
|
|
50796
50799
|
return data;
|
|
50797
50800
|
}
|
|
@@ -50813,6 +50816,7 @@ export interface ISurroundingOperationDto {
|
|
|
50813
50816
|
resourceDepartmentName?: string | null;
|
|
50814
50817
|
producedQuantity: number;
|
|
50815
50818
|
scrappedQuantity: number;
|
|
50819
|
+
earlierOperationsScrappedQuantity: number;
|
|
50816
50820
|
startedQuantity?: number | null;
|
|
50817
50821
|
}
|
|
50818
50822
|
|