erpnext-queue-client 1.10.2 → 1.10.3
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.
|
@@ -1,4 +1,14 @@
|
|
|
1
1
|
import { z } from "zod";
|
|
2
|
+
export declare const WarehouseCategory: z.ZodObject<{
|
|
3
|
+
name: z.ZodString;
|
|
4
|
+
title: z.ZodString;
|
|
5
|
+
}, "strip", z.ZodTypeAny, {
|
|
6
|
+
name: string;
|
|
7
|
+
title: string;
|
|
8
|
+
}, {
|
|
9
|
+
name: string;
|
|
10
|
+
title: string;
|
|
11
|
+
}>;
|
|
2
12
|
export declare const WarehouseCategoryList: z.ZodArray<z.ZodObject<{
|
|
3
13
|
name: z.ZodString;
|
|
4
14
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -1,7 +1,14 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.WarehouseCategoryMethodResponse = exports.WarehouseCategoryList = void 0;
|
|
3
|
+
exports.WarehouseCategoryMethodResponse = exports.WarehouseCategoryList = exports.WarehouseCategory = void 0;
|
|
4
4
|
const zod_1 = require("zod");
|
|
5
|
+
// Partial model only, needs to be completed
|
|
6
|
+
exports.WarehouseCategory = zod_1.z
|
|
7
|
+
.object({
|
|
8
|
+
name: zod_1.z.string(),
|
|
9
|
+
title: zod_1.z.string(),
|
|
10
|
+
})
|
|
11
|
+
.describe("Warehouse Category");
|
|
5
12
|
exports.WarehouseCategoryList = zod_1.z
|
|
6
13
|
.array(zod_1.z.object({
|
|
7
14
|
name: zod_1.z.string(),
|