@ignos/api-client 20241108.0.10682 → 20241112.0.10697
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
|
@@ -9651,7 +9651,7 @@ export interface IStoppedWorkDto {
|
|
|
9651
9651
|
}
|
|
9652
9652
|
export declare class StartOperations implements IStartOperations {
|
|
9653
9653
|
operations: StartOperationDto[];
|
|
9654
|
-
workType
|
|
9654
|
+
workType?: WorkTypeDto | null;
|
|
9655
9655
|
constructor(data?: IStartOperations);
|
|
9656
9656
|
init(_data?: any): void;
|
|
9657
9657
|
static fromJS(data: any): StartOperations;
|
|
@@ -9659,7 +9659,7 @@ export declare class StartOperations implements IStartOperations {
|
|
|
9659
9659
|
}
|
|
9660
9660
|
export interface IStartOperations {
|
|
9661
9661
|
operations: StartOperationDto[];
|
|
9662
|
-
workType
|
|
9662
|
+
workType?: WorkTypeDto | null;
|
|
9663
9663
|
}
|
|
9664
9664
|
export declare class StartOperationDto implements IStartOperationDto {
|
|
9665
9665
|
workOrder: string;
|
package/package.json
CHANGED
package/src/ignosportal-api.ts
CHANGED
|
@@ -43295,7 +43295,7 @@ export interface IStoppedWorkDto {
|
|
|
43295
43295
|
|
|
43296
43296
|
export class StartOperations implements IStartOperations {
|
|
43297
43297
|
operations!: StartOperationDto[];
|
|
43298
|
-
workType
|
|
43298
|
+
workType?: WorkTypeDto | null;
|
|
43299
43299
|
|
|
43300
43300
|
constructor(data?: IStartOperations) {
|
|
43301
43301
|
if (data) {
|
|
@@ -43341,7 +43341,7 @@ export class StartOperations implements IStartOperations {
|
|
|
43341
43341
|
|
|
43342
43342
|
export interface IStartOperations {
|
|
43343
43343
|
operations: StartOperationDto[];
|
|
43344
|
-
workType
|
|
43344
|
+
workType?: WorkTypeDto | null;
|
|
43345
43345
|
}
|
|
43346
43346
|
|
|
43347
43347
|
export class StartOperationDto implements IStartOperationDto {
|