@ignos/api-client 20241105.0.10652 → 20241105.0.10657
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
|
@@ -9638,6 +9638,7 @@ export declare class StartOperationDto implements IStartOperationDto {
|
|
|
9638
9638
|
operationNumber: number;
|
|
9639
9639
|
startedQuantity?: number | null;
|
|
9640
9640
|
resource: string;
|
|
9641
|
+
workType?: WorkTypeDto;
|
|
9641
9642
|
constructor(data?: IStartOperationDto);
|
|
9642
9643
|
init(_data?: any): void;
|
|
9643
9644
|
static fromJS(data: any): StartOperationDto;
|
|
@@ -9648,6 +9649,7 @@ export interface IStartOperationDto {
|
|
|
9648
9649
|
operationNumber: number;
|
|
9649
9650
|
startedQuantity?: number | null;
|
|
9650
9651
|
resource: string;
|
|
9652
|
+
workType?: WorkTypeDto;
|
|
9651
9653
|
}
|
|
9652
9654
|
export declare class ReportOperationProgress implements IReportOperationProgress {
|
|
9653
9655
|
operations: ReportOperationProgressDto[];
|
package/lib/ignosportal-api.js
CHANGED
|
@@ -34574,6 +34574,7 @@ export class StartOperationDto {
|
|
|
34574
34574
|
this.operationNumber = _data["operationNumber"];
|
|
34575
34575
|
this.startedQuantity = _data["startedQuantity"];
|
|
34576
34576
|
this.resource = _data["resource"];
|
|
34577
|
+
this.workType = _data["workType"];
|
|
34577
34578
|
}
|
|
34578
34579
|
}
|
|
34579
34580
|
static fromJS(data) {
|
|
@@ -34588,6 +34589,7 @@ export class StartOperationDto {
|
|
|
34588
34589
|
data["operationNumber"] = this.operationNumber;
|
|
34589
34590
|
data["startedQuantity"] = this.startedQuantity;
|
|
34590
34591
|
data["resource"] = this.resource;
|
|
34592
|
+
data["workType"] = this.workType;
|
|
34591
34593
|
return data;
|
|
34592
34594
|
}
|
|
34593
34595
|
}
|
package/package.json
CHANGED
package/src/ignosportal-api.ts
CHANGED
|
@@ -43170,6 +43170,7 @@ export class StartOperationDto implements IStartOperationDto {
|
|
|
43170
43170
|
operationNumber!: number;
|
|
43171
43171
|
startedQuantity?: number | null;
|
|
43172
43172
|
resource!: string;
|
|
43173
|
+
workType?: WorkTypeDto;
|
|
43173
43174
|
|
|
43174
43175
|
constructor(data?: IStartOperationDto) {
|
|
43175
43176
|
if (data) {
|
|
@@ -43186,6 +43187,7 @@ export class StartOperationDto implements IStartOperationDto {
|
|
|
43186
43187
|
this.operationNumber = _data["operationNumber"];
|
|
43187
43188
|
this.startedQuantity = _data["startedQuantity"];
|
|
43188
43189
|
this.resource = _data["resource"];
|
|
43190
|
+
this.workType = _data["workType"];
|
|
43189
43191
|
}
|
|
43190
43192
|
}
|
|
43191
43193
|
|
|
@@ -43202,6 +43204,7 @@ export class StartOperationDto implements IStartOperationDto {
|
|
|
43202
43204
|
data["operationNumber"] = this.operationNumber;
|
|
43203
43205
|
data["startedQuantity"] = this.startedQuantity;
|
|
43204
43206
|
data["resource"] = this.resource;
|
|
43207
|
+
data["workType"] = this.workType;
|
|
43205
43208
|
return data;
|
|
43206
43209
|
}
|
|
43207
43210
|
}
|
|
@@ -43211,6 +43214,7 @@ export interface IStartOperationDto {
|
|
|
43211
43214
|
operationNumber: number;
|
|
43212
43215
|
startedQuantity?: number | null;
|
|
43213
43216
|
resource: string;
|
|
43217
|
+
workType?: WorkTypeDto;
|
|
43214
43218
|
}
|
|
43215
43219
|
|
|
43216
43220
|
export class ReportOperationProgress implements IReportOperationProgress {
|