@nomalism-com/types 0.46.3 → 0.46.4
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/dist/index.cjs
CHANGED
|
@@ -4519,7 +4519,8 @@ __export(route_schema_exports81, {
|
|
|
4519
4519
|
import joi82 from "joi";
|
|
4520
4520
|
var finalizarEntradaDeMaterialBodyKeys = {
|
|
4521
4521
|
provider_id: joi82.string().uuid().required(),
|
|
4522
|
-
saved_em_picking_ids: joi82.array().items(joi82.string().uuid().required()).optional()
|
|
4522
|
+
saved_em_picking_ids: joi82.array().items(joi82.string().uuid().required()).optional(),
|
|
4523
|
+
store_operator_id: joi82.string().uuid().required()
|
|
4523
4524
|
};
|
|
4524
4525
|
var finalizarEntradaDeMaterialBody = joi82.object().keys(finalizarEntradaDeMaterialBodyKeys).messages(messages);
|
|
4525
4526
|
var undoEntradaDeMaterialBodyKeys = {
|
package/dist/index.js
CHANGED
|
@@ -4519,7 +4519,8 @@ __export(route_schema_exports81, {
|
|
|
4519
4519
|
import joi82 from "joi";
|
|
4520
4520
|
var finalizarEntradaDeMaterialBodyKeys = {
|
|
4521
4521
|
provider_id: joi82.string().uuid().required(),
|
|
4522
|
-
saved_em_picking_ids: joi82.array().items(joi82.string().uuid().required()).optional()
|
|
4522
|
+
saved_em_picking_ids: joi82.array().items(joi82.string().uuid().required()).optional(),
|
|
4523
|
+
store_operator_id: joi82.string().uuid().required()
|
|
4523
4524
|
};
|
|
4524
4525
|
var finalizarEntradaDeMaterialBody = joi82.object().keys(finalizarEntradaDeMaterialBodyKeys).messages(messages);
|
|
4525
4526
|
var undoEntradaDeMaterialBodyKeys = {
|
|
@@ -97,6 +97,7 @@ export interface IUndoEntradaDeMaterialRequest {
|
|
|
97
97
|
export interface IFinalizarEntradaDeMaterialRequest {
|
|
98
98
|
provider_id: string;
|
|
99
99
|
saved_em_picking_ids?: string[];
|
|
100
|
+
store_operator_id: string;
|
|
100
101
|
}
|
|
101
102
|
export interface IFinalizarEntradaDeMaterialResponse {
|
|
102
103
|
broker_messages: IShared.IBrokerMessage<IShared.IBrokerTopic>[];
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@nomalism-com/types",
|
|
3
3
|
"description": "A nomalism package with all necessary types and validations for developing APIs",
|
|
4
|
-
"version": "0.46.
|
|
4
|
+
"version": "0.46.4",
|
|
5
5
|
"author": "Nomalism <it.nomalism@gmail.com> (https://nomalism.com/)",
|
|
6
6
|
"license": "UNLICENSED",
|
|
7
7
|
"type": "module",
|