@ignos/api-client 20240801.0.9898 → 20240805.0.9909
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
|
@@ -8174,6 +8174,7 @@ export declare class PickListSuggestionDto implements IPickListSuggestionDto {
|
|
|
8174
8174
|
lot: string;
|
|
8175
8175
|
consumedAutomatically: boolean;
|
|
8176
8176
|
requiresBatchTracing: boolean;
|
|
8177
|
+
requiresSerialTracing: boolean;
|
|
8177
8178
|
proposedQuantity: number;
|
|
8178
8179
|
remainingQuantity: number;
|
|
8179
8180
|
suggestedStartedQuantity?: InventoryDto | null;
|
|
@@ -8202,6 +8203,7 @@ export interface IPickListSuggestionDto {
|
|
|
8202
8203
|
lot: string;
|
|
8203
8204
|
consumedAutomatically: boolean;
|
|
8204
8205
|
requiresBatchTracing: boolean;
|
|
8206
|
+
requiresSerialTracing: boolean;
|
|
8205
8207
|
proposedQuantity: number;
|
|
8206
8208
|
remainingQuantity: number;
|
|
8207
8209
|
suggestedStartedQuantity?: InventoryDto | null;
|
package/lib/ignosportal-api.js
CHANGED
|
@@ -30897,6 +30897,7 @@ export class PickListSuggestionDto {
|
|
|
30897
30897
|
this.lot = _data["lot"];
|
|
30898
30898
|
this.consumedAutomatically = _data["consumedAutomatically"];
|
|
30899
30899
|
this.requiresBatchTracing = _data["requiresBatchTracing"];
|
|
30900
|
+
this.requiresSerialTracing = _data["requiresSerialTracing"];
|
|
30900
30901
|
this.proposedQuantity = _data["proposedQuantity"];
|
|
30901
30902
|
this.remainingQuantity = _data["remainingQuantity"];
|
|
30902
30903
|
this.suggestedStartedQuantity = _data["suggestedStartedQuantity"] ? InventoryDto.fromJS(_data["suggestedStartedQuantity"]) : undefined;
|
|
@@ -30937,6 +30938,7 @@ export class PickListSuggestionDto {
|
|
|
30937
30938
|
data["lot"] = this.lot;
|
|
30938
30939
|
data["consumedAutomatically"] = this.consumedAutomatically;
|
|
30939
30940
|
data["requiresBatchTracing"] = this.requiresBatchTracing;
|
|
30941
|
+
data["requiresSerialTracing"] = this.requiresSerialTracing;
|
|
30940
30942
|
data["proposedQuantity"] = this.proposedQuantity;
|
|
30941
30943
|
data["remainingQuantity"] = this.remainingQuantity;
|
|
30942
30944
|
data["suggestedStartedQuantity"] = this.suggestedStartedQuantity ? this.suggestedStartedQuantity.toJSON() : undefined;
|
package/package.json
CHANGED
package/src/ignosportal-api.ts
CHANGED
|
@@ -38048,6 +38048,7 @@ export class PickListSuggestionDto implements IPickListSuggestionDto {
|
|
|
38048
38048
|
lot!: string;
|
|
38049
38049
|
consumedAutomatically!: boolean;
|
|
38050
38050
|
requiresBatchTracing!: boolean;
|
|
38051
|
+
requiresSerialTracing!: boolean;
|
|
38051
38052
|
proposedQuantity!: number;
|
|
38052
38053
|
remainingQuantity!: number;
|
|
38053
38054
|
suggestedStartedQuantity?: InventoryDto | null;
|
|
@@ -38087,6 +38088,7 @@ export class PickListSuggestionDto implements IPickListSuggestionDto {
|
|
|
38087
38088
|
this.lot = _data["lot"];
|
|
38088
38089
|
this.consumedAutomatically = _data["consumedAutomatically"];
|
|
38089
38090
|
this.requiresBatchTracing = _data["requiresBatchTracing"];
|
|
38091
|
+
this.requiresSerialTracing = _data["requiresSerialTracing"];
|
|
38090
38092
|
this.proposedQuantity = _data["proposedQuantity"];
|
|
38091
38093
|
this.remainingQuantity = _data["remainingQuantity"];
|
|
38092
38094
|
this.suggestedStartedQuantity = _data["suggestedStartedQuantity"] ? InventoryDto.fromJS(_data["suggestedStartedQuantity"]) : <any>undefined;
|
|
@@ -38129,6 +38131,7 @@ export class PickListSuggestionDto implements IPickListSuggestionDto {
|
|
|
38129
38131
|
data["lot"] = this.lot;
|
|
38130
38132
|
data["consumedAutomatically"] = this.consumedAutomatically;
|
|
38131
38133
|
data["requiresBatchTracing"] = this.requiresBatchTracing;
|
|
38134
|
+
data["requiresSerialTracing"] = this.requiresSerialTracing;
|
|
38132
38135
|
data["proposedQuantity"] = this.proposedQuantity;
|
|
38133
38136
|
data["remainingQuantity"] = this.remainingQuantity;
|
|
38134
38137
|
data["suggestedStartedQuantity"] = this.suggestedStartedQuantity ? this.suggestedStartedQuantity.toJSON() : <any>undefined;
|
|
@@ -38164,6 +38167,7 @@ export interface IPickListSuggestionDto {
|
|
|
38164
38167
|
lot: string;
|
|
38165
38168
|
consumedAutomatically: boolean;
|
|
38166
38169
|
requiresBatchTracing: boolean;
|
|
38170
|
+
requiresSerialTracing: boolean;
|
|
38167
38171
|
proposedQuantity: number;
|
|
38168
38172
|
remainingQuantity: number;
|
|
38169
38173
|
suggestedStartedQuantity?: InventoryDto | null;
|