@meerkapp/wms-contracts 0.2.0-beta.10 → 0.2.0-beta.12
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 +10 -0
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +17 -1
- package/dist/index.d.ts +17 -1
- package/dist/index.js +8 -0
- package/dist/index.js.map +1 -1
- package/package.json +5 -5
package/dist/index.cjs
CHANGED
|
@@ -1475,6 +1475,8 @@ __export(index_exports, {
|
|
|
1475
1475
|
StringWithAggregatesFilterObjectSchema: () => StringWithAggregatesFilterObjectSchema,
|
|
1476
1476
|
StringWithAggregatesFilterObjectZodSchema: () => StringWithAggregatesFilterObjectZodSchema,
|
|
1477
1477
|
TransactionIsolationLevelSchema: () => TransactionIsolationLevelSchema,
|
|
1478
|
+
UpdateEmployeeEmailSchema: () => UpdateEmployeeEmailSchema,
|
|
1479
|
+
UpdateEmployeePasswordSchema: () => UpdateEmployeePasswordSchema,
|
|
1478
1480
|
UpdateEmployeeSchema: () => UpdateEmployeeSchema,
|
|
1479
1481
|
UpdateOrganizationSchema: () => UpdateOrganizationSchema,
|
|
1480
1482
|
UpdateOwnEmailSchema: () => UpdateOwnEmailSchema,
|
|
@@ -12014,6 +12016,12 @@ var UpdateOwnPasswordSchema = import_zod7.z.object({
|
|
|
12014
12016
|
currentPassword: import_zod7.z.string(),
|
|
12015
12017
|
newPassword: import_zod7.z.string().min(8)
|
|
12016
12018
|
});
|
|
12019
|
+
var UpdateEmployeeEmailSchema = import_zod7.z.object({
|
|
12020
|
+
email: import_zod7.z.string().email()
|
|
12021
|
+
});
|
|
12022
|
+
var UpdateEmployeePasswordSchema = import_zod7.z.object({
|
|
12023
|
+
newPassword: import_zod7.z.string().min(8)
|
|
12024
|
+
});
|
|
12017
12025
|
|
|
12018
12026
|
// src/modules/role/index.ts
|
|
12019
12027
|
var import_zod8 = require("zod");
|
|
@@ -13485,6 +13493,8 @@ var UpdateRoleSchema = import_zod8.z.object({
|
|
|
13485
13493
|
StringWithAggregatesFilterObjectSchema,
|
|
13486
13494
|
StringWithAggregatesFilterObjectZodSchema,
|
|
13487
13495
|
TransactionIsolationLevelSchema,
|
|
13496
|
+
UpdateEmployeeEmailSchema,
|
|
13497
|
+
UpdateEmployeePasswordSchema,
|
|
13488
13498
|
UpdateEmployeeSchema,
|
|
13489
13499
|
UpdateOrganizationSchema,
|
|
13490
13500
|
UpdateOwnEmailSchema,
|