@nomalism-com/api 0.45.44 → 0.45.46
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.js
CHANGED
|
@@ -3193,11 +3193,17 @@ var Repository83 = class {
|
|
|
3193
3193
|
}
|
|
3194
3194
|
printBulkLabelToPdfUrl({
|
|
3195
3195
|
groupLabel,
|
|
3196
|
+
stockOrders,
|
|
3197
|
+
notOk,
|
|
3198
|
+
clientOrders,
|
|
3196
3199
|
saved_em_picking_ids,
|
|
3197
3200
|
token
|
|
3198
3201
|
}) {
|
|
3199
3202
|
const qs = new URLSearchParams();
|
|
3200
3203
|
qs.set("groupLabel", groupLabel.toString());
|
|
3204
|
+
qs.set("stockOrders", stockOrders);
|
|
3205
|
+
qs.set("notOk", notOk);
|
|
3206
|
+
qs.set("clientOrders", clientOrders);
|
|
3201
3207
|
qs.set("saved_em_picking_ids", saved_em_picking_ids);
|
|
3202
3208
|
qs.set("token", token);
|
|
3203
3209
|
return `${this.route}print_bulk_label_pdf?${qs.toString()}`;
|
|
@@ -10,5 +10,5 @@ export default class Repository implements Nomalism.MaterialEntrance.IApi {
|
|
|
10
10
|
undoEntradaMaterial(data: Nomalism.MaterialEntrance.IUndoEntradaDeMaterialRequest): Promise<void>;
|
|
11
11
|
findDoneById({ id, }: Nomalism.shared.IFindByIdRequest): Promise<Nomalism.MaterialEntrance.IFindDoneByIdResponse[]>;
|
|
12
12
|
printLabelToPdfUrl({ product_id }: Nomalism.MaterialEntrance.IPrintLabelParamsRequest, { quantity, ef_name, pc_document_number, prison, note, availableStock, }: Nomalism.MaterialEntrance.IPrintLabelQueryRequest, token: string): string;
|
|
13
|
-
printBulkLabelToPdfUrl({ groupLabel, saved_em_picking_ids, token, }: Nomalism.MaterialEntrance.IPrintBulkLabelRequest): string;
|
|
13
|
+
printBulkLabelToPdfUrl({ groupLabel, stockOrders, notOk, clientOrders, saved_em_picking_ids, token, }: Nomalism.MaterialEntrance.IPrintBulkLabelRequest): string;
|
|
14
14
|
}
|
|
@@ -22,6 +22,6 @@ export default class Repository implements Nomalism.DocumentHeader.IRepository {
|
|
|
22
22
|
documentThermalPrint({ id }: Nomalism.shared.IFindByIdRequest): Promise<string>;
|
|
23
23
|
documentList({ id, }: Nomalism.shared.IFindByIdRequest): Promise<Nomalism.DocumentHeader.IDocumentListResponse[]>;
|
|
24
24
|
findStartDocumentHeaderSiblings({ id, }: Nomalism.shared.IFindByIdRequest): Promise<Nomalism.DocumentHeader.IFindStartDocumentHeaderSiblingsResponse>;
|
|
25
|
-
createSiteProposal(data: Nomalism.shared.IBrokerTopicPayload[
|
|
25
|
+
createSiteProposal(data: Nomalism.shared.IBrokerTopicPayload[Nomalism.shared.IBrokerTopic.create_site_proposal]): Promise<Nomalism.ProjectInfo.ICreateResponse>;
|
|
26
26
|
findCountByOwnerIds(data: Nomalism.DocumentHeader.IFindCountByOwnersIdsRequest): Promise<Nomalism.DocumentHeader.IFindCountByOwnersIdsResponse[]>;
|
|
27
27
|
}
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@nomalism-com/api",
|
|
3
3
|
"description": "A nomalism API package for performing HTTP requests on API endpoints",
|
|
4
|
-
"version": "0.45.
|
|
4
|
+
"version": "0.45.46",
|
|
5
5
|
"author": "Nomalism <it.nomalism@gmail.com> (https://https://nomalism.com/)",
|
|
6
6
|
"license": "UNLICENSED",
|
|
7
7
|
"type": "module",
|
|
@@ -23,7 +23,7 @@
|
|
|
23
23
|
"prepack": "npm run lint && npm run build"
|
|
24
24
|
},
|
|
25
25
|
"dependencies": {
|
|
26
|
-
"@nomalism-com/types": "^0.45.
|
|
26
|
+
"@nomalism-com/types": "^0.45.48",
|
|
27
27
|
"axios": "^1.16.1"
|
|
28
28
|
},
|
|
29
29
|
"devDependencies": {
|