@ignos/api-client 20260108.0.13688-alpha → 20260109.0.13694
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
|
@@ -11254,7 +11254,6 @@ export declare class ProductionOrderDto implements IProductionOrderDto {
|
|
|
11254
11254
|
attachments?: WorkOrderAttachmentDto[] | null;
|
|
11255
11255
|
startDate?: Date | null;
|
|
11256
11256
|
endDate?: Date | null;
|
|
11257
|
-
deliveryDate?: Date | null;
|
|
11258
11257
|
bomPosition?: string | null;
|
|
11259
11258
|
drawing?: DrawingDto | null;
|
|
11260
11259
|
orderReference?: OrderReferenceDto | null;
|
|
@@ -11282,7 +11281,6 @@ export interface IProductionOrderDto {
|
|
|
11282
11281
|
attachments?: WorkOrderAttachmentDto[] | null;
|
|
11283
11282
|
startDate?: Date | null;
|
|
11284
11283
|
endDate?: Date | null;
|
|
11285
|
-
deliveryDate?: Date | null;
|
|
11286
11284
|
bomPosition?: string | null;
|
|
11287
11285
|
drawing?: DrawingDto | null;
|
|
11288
11286
|
orderReference?: OrderReferenceDto | null;
|
package/lib/ignosportal-api.js
CHANGED
|
@@ -42249,7 +42249,6 @@ export class ProductionOrderDto {
|
|
|
42249
42249
|
}
|
|
42250
42250
|
this.startDate = _data["startDate"] ? new Date(_data["startDate"].toString()) : undefined;
|
|
42251
42251
|
this.endDate = _data["endDate"] ? new Date(_data["endDate"].toString()) : undefined;
|
|
42252
|
-
this.deliveryDate = _data["deliveryDate"] ? new Date(_data["deliveryDate"].toString()) : undefined;
|
|
42253
42252
|
this.bomPosition = _data["bomPosition"];
|
|
42254
42253
|
this.drawing = _data["drawing"] ? DrawingDto.fromJS(_data["drawing"]) : undefined;
|
|
42255
42254
|
this.orderReference = _data["orderReference"] ? OrderReferenceDto.fromJS(_data["orderReference"]) : undefined;
|
|
@@ -42289,7 +42288,6 @@ export class ProductionOrderDto {
|
|
|
42289
42288
|
}
|
|
42290
42289
|
data["startDate"] = this.startDate ? this.startDate.toISOString() : undefined;
|
|
42291
42290
|
data["endDate"] = this.endDate ? this.endDate.toISOString() : undefined;
|
|
42292
|
-
data["deliveryDate"] = this.deliveryDate ? this.deliveryDate.toISOString() : undefined;
|
|
42293
42291
|
data["bomPosition"] = this.bomPosition;
|
|
42294
42292
|
data["drawing"] = this.drawing ? this.drawing.toJSON() : undefined;
|
|
42295
42293
|
data["orderReference"] = this.orderReference ? this.orderReference.toJSON() : undefined;
|
package/package.json
CHANGED
package/src/ignosportal-api.ts
CHANGED
|
@@ -52166,7 +52166,6 @@ export class ProductionOrderDto implements IProductionOrderDto {
|
|
|
52166
52166
|
attachments?: WorkOrderAttachmentDto[] | null;
|
|
52167
52167
|
startDate?: Date | null;
|
|
52168
52168
|
endDate?: Date | null;
|
|
52169
|
-
deliveryDate?: Date | null;
|
|
52170
52169
|
bomPosition?: string | null;
|
|
52171
52170
|
drawing?: DrawingDto | null;
|
|
52172
52171
|
orderReference?: OrderReferenceDto | null;
|
|
@@ -52212,7 +52211,6 @@ export class ProductionOrderDto implements IProductionOrderDto {
|
|
|
52212
52211
|
}
|
|
52213
52212
|
this.startDate = _data["startDate"] ? new Date(_data["startDate"].toString()) : undefined as any;
|
|
52214
52213
|
this.endDate = _data["endDate"] ? new Date(_data["endDate"].toString()) : undefined as any;
|
|
52215
|
-
this.deliveryDate = _data["deliveryDate"] ? new Date(_data["deliveryDate"].toString()) : undefined as any;
|
|
52216
52214
|
this.bomPosition = _data["bomPosition"];
|
|
52217
52215
|
this.drawing = _data["drawing"] ? DrawingDto.fromJS(_data["drawing"]) : undefined as any;
|
|
52218
52216
|
this.orderReference = _data["orderReference"] ? OrderReferenceDto.fromJS(_data["orderReference"]) : undefined as any;
|
|
@@ -52254,7 +52252,6 @@ export class ProductionOrderDto implements IProductionOrderDto {
|
|
|
52254
52252
|
}
|
|
52255
52253
|
data["startDate"] = this.startDate ? this.startDate.toISOString() : undefined as any;
|
|
52256
52254
|
data["endDate"] = this.endDate ? this.endDate.toISOString() : undefined as any;
|
|
52257
|
-
data["deliveryDate"] = this.deliveryDate ? this.deliveryDate.toISOString() : undefined as any;
|
|
52258
52255
|
data["bomPosition"] = this.bomPosition;
|
|
52259
52256
|
data["drawing"] = this.drawing ? this.drawing.toJSON() : undefined as any;
|
|
52260
52257
|
data["orderReference"] = this.orderReference ? this.orderReference.toJSON() : undefined as any;
|
|
@@ -52281,7 +52278,6 @@ export interface IProductionOrderDto {
|
|
|
52281
52278
|
attachments?: WorkOrderAttachmentDto[] | null;
|
|
52282
52279
|
startDate?: Date | null;
|
|
52283
52280
|
endDate?: Date | null;
|
|
52284
|
-
deliveryDate?: Date | null;
|
|
52285
52281
|
bomPosition?: string | null;
|
|
52286
52282
|
drawing?: DrawingDto | null;
|
|
52287
52283
|
orderReference?: OrderReferenceDto | null;
|