@kl1/contracts 1.0.73 → 1.0.74

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
@@ -1266,7 +1266,6 @@ var CxLogSchema = DefaultEntitySchema.extend({
1266
1266
  startedDate: import_zod28.default.date().nullable(),
1267
1267
  handledTime: import_zod28.default.number().nullable(),
1268
1268
  firstResponseTime: import_zod28.default.number().nullable(),
1269
- disposition: import_zod28.default.string().nullable(),
1270
1269
  wrapUpForm: WrapUpFormSchema.nullable()
1271
1270
  });
1272
1271
  var CxLogSchemaWithRelations = DefaultEntitySchema.extend({
@@ -1280,7 +1279,6 @@ var CxLogSchemaWithRelations = DefaultEntitySchema.extend({
1280
1279
  startedDate: import_zod28.default.string().nullable(),
1281
1280
  handledTime: import_zod28.default.string().nullable(),
1282
1281
  firstResponseTime: import_zod28.default.string().nullable(),
1283
- disposition: import_zod28.default.string().nullable(),
1284
1282
  slaMeet: import_zod28.default.string().nullable(),
1285
1283
  evaluateForm: EvaluateFormSchema.nullable(),
1286
1284
  wrapUpForm: WrapUpFormSchema.nullable(),
@@ -6050,6 +6048,7 @@ var UpdateWrapUpFormSchema = CreateWrapUpFormSchema.extend({
6050
6048
  });
6051
6049
  var CreateCXLogWrapUpFormSchema = import_zod86.z.object({
6052
6050
  cxLogId: import_zod86.z.string().uuid(),
6051
+ disposition: import_zod86.z.string().optional(),
6053
6052
  tagIds: import_zod86.z.array(import_zod86.z.string().uuid()).optional(),
6054
6053
  note: import_zod86.z.string().optional()
6055
6054
  });