@ignos/api-client 20240318.0.8996 → 20240318.0.8999
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
|
@@ -7711,7 +7711,7 @@ export declare class SurroundingOperationDto implements ISurroundingOperationDto
|
|
|
7711
7711
|
id: string;
|
|
7712
7712
|
operation: number;
|
|
7713
7713
|
operationName: string;
|
|
7714
|
-
plannedStart
|
|
7714
|
+
plannedStart?: Date | null;
|
|
7715
7715
|
plannedEnd?: Date | null;
|
|
7716
7716
|
actualStart?: Date | null;
|
|
7717
7717
|
actualEnd?: Date | null;
|
|
@@ -7731,7 +7731,7 @@ export interface ISurroundingOperationDto {
|
|
|
7731
7731
|
id: string;
|
|
7732
7732
|
operation: number;
|
|
7733
7733
|
operationName: string;
|
|
7734
|
-
plannedStart
|
|
7734
|
+
plannedStart?: Date | null;
|
|
7735
7735
|
plannedEnd?: Date | null;
|
|
7736
7736
|
actualStart?: Date | null;
|
|
7737
7737
|
actualEnd?: Date | null;
|
package/package.json
CHANGED
package/src/ignosportal-api.ts
CHANGED
|
@@ -35081,7 +35081,7 @@ export class SurroundingOperationDto implements ISurroundingOperationDto {
|
|
|
35081
35081
|
id!: string;
|
|
35082
35082
|
operation!: number;
|
|
35083
35083
|
operationName!: string;
|
|
35084
|
-
plannedStart
|
|
35084
|
+
plannedStart?: Date | null;
|
|
35085
35085
|
plannedEnd?: Date | null;
|
|
35086
35086
|
actualStart?: Date | null;
|
|
35087
35087
|
actualEnd?: Date | null;
|
|
@@ -35152,7 +35152,7 @@ export interface ISurroundingOperationDto {
|
|
|
35152
35152
|
id: string;
|
|
35153
35153
|
operation: number;
|
|
35154
35154
|
operationName: string;
|
|
35155
|
-
plannedStart
|
|
35155
|
+
plannedStart?: Date | null;
|
|
35156
35156
|
plannedEnd?: Date | null;
|
|
35157
35157
|
actualStart?: Date | null;
|
|
35158
35158
|
actualEnd?: Date | null;
|