@kl1/contracts 1.1.24-uat → 1.1.25-uat
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 +2 -1
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +2 -1
- package/dist/index.mjs.map +1 -1
- package/dist/src/contract.d.ts +3 -0
- package/dist/src/contract.d.ts.map +1 -1
- package/dist/src/wrap-up-form/index.d.ts +3 -0
- package/dist/src/wrap-up-form/index.d.ts.map +1 -1
- package/dist/src/wrap-up-form/validation.d.ts +3 -0
- package/dist/src/wrap-up-form/validation.d.ts.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
@@ -6641,7 +6641,8 @@ var CreateWrapUpFormSchema = import_zod91.z.object({
|
|
6641
6641
|
callTo: import_zod91.z.string().nullable().optional()
|
6642
6642
|
});
|
6643
6643
|
var UpdateWrapUpFormSchema = CreateWrapUpFormSchema.extend({
|
6644
|
-
tags: import_zod91.z.array(import_zod91.z.string()).optional()
|
6644
|
+
tags: import_zod91.z.array(import_zod91.z.string()).optional(),
|
6645
|
+
categoryIds: import_zod91.z.array(import_zod91.z.string().uuid()).optional()
|
6645
6646
|
});
|
6646
6647
|
var CreateCXLogWrapUpFormSchema = import_zod91.z.object({
|
6647
6648
|
cxLogId: import_zod91.z.string().uuid(),
|