@meerkapp/wms-contracts 0.3.0-beta.5 → 0.3.0-beta.6
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 +6 -6
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +12 -18
- package/dist/index.d.ts +12 -18
- package/dist/index.js +6 -6
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -16389,15 +16389,15 @@ var ProductTypeSchema = import_zod9.z.object({
|
|
|
16389
16389
|
var import_zod10 = require("zod");
|
|
16390
16390
|
var CreateFolderSchema = import_zod10.z.object({
|
|
16391
16391
|
name: import_zod10.z.string().min(1),
|
|
16392
|
-
parentId: import_zod10.z.number().int().positive().optional().nullable()
|
|
16393
|
-
sortOrder: import_zod10.z.number().int().min(0).default(0)
|
|
16392
|
+
parentId: import_zod10.z.number().int().positive().optional().nullable()
|
|
16394
16393
|
});
|
|
16395
16394
|
var UpdateFolderSchema = CreateFolderSchema.partial();
|
|
16396
16395
|
var FolderSchema = import_zod10.z.object({
|
|
16397
16396
|
id: import_zod10.z.number(),
|
|
16398
16397
|
name: import_zod10.z.string(),
|
|
16399
16398
|
parentId: import_zod10.z.number().nullable(),
|
|
16400
|
-
|
|
16399
|
+
pinnedAt: import_zod10.z.string().nullable(),
|
|
16400
|
+
pinOrder: import_zod10.z.number().nullable(),
|
|
16401
16401
|
updatedAt: import_zod10.z.string()
|
|
16402
16402
|
});
|
|
16403
16403
|
|
|
@@ -16406,8 +16406,7 @@ var import_zod11 = require("zod");
|
|
|
16406
16406
|
var CreateProductCollectionSchema = import_zod11.z.object({
|
|
16407
16407
|
name: import_zod11.z.string().min(1),
|
|
16408
16408
|
folderId: import_zod11.z.number().int().positive().optional().nullable(),
|
|
16409
|
-
defaultProductTypeId: import_zod11.z.number().int().positive().optional().nullable()
|
|
16410
|
-
sortOrder: import_zod11.z.number().int().min(0).default(0)
|
|
16409
|
+
defaultProductTypeId: import_zod11.z.number().int().positive().optional().nullable()
|
|
16411
16410
|
});
|
|
16412
16411
|
var UpdateProductCollectionSchema = CreateProductCollectionSchema.partial();
|
|
16413
16412
|
var ProductCollectionSchema = import_zod11.z.object({
|
|
@@ -16415,7 +16414,8 @@ var ProductCollectionSchema = import_zod11.z.object({
|
|
|
16415
16414
|
name: import_zod11.z.string(),
|
|
16416
16415
|
folderId: import_zod11.z.number().nullable(),
|
|
16417
16416
|
defaultProductTypeId: import_zod11.z.number().nullable(),
|
|
16418
|
-
|
|
16417
|
+
pinnedAt: import_zod11.z.string().nullable(),
|
|
16418
|
+
pinOrder: import_zod11.z.number().nullable(),
|
|
16419
16419
|
updatedAt: import_zod11.z.string()
|
|
16420
16420
|
});
|
|
16421
16421
|
// Annotate the CommonJS export names for ESM import in node:
|