@kl1/contracts 1.0.72 → 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.mjs CHANGED
@@ -1175,7 +1175,7 @@ var TelephonyDropdownListSchema = z26.object({
1175
1175
  trunks: z26.array(
1176
1176
  z26.object({
1177
1177
  id: z26.string().uuid(),
1178
- trunk: z26.string()
1178
+ trunkName: z26.string()
1179
1179
  })
1180
1180
  ),
1181
1181
  status: z26.array(z26.enum(["ANSWERED", "NO ANSWER", "FAILED"])),
@@ -1205,7 +1205,6 @@ var CxLogSchema = DefaultEntitySchema.extend({
1205
1205
  startedDate: z28.date().nullable(),
1206
1206
  handledTime: z28.number().nullable(),
1207
1207
  firstResponseTime: z28.number().nullable(),
1208
- disposition: z28.string().nullable(),
1209
1208
  wrapUpForm: WrapUpFormSchema.nullable()
1210
1209
  });
1211
1210
  var CxLogSchemaWithRelations = DefaultEntitySchema.extend({
@@ -1219,7 +1218,6 @@ var CxLogSchemaWithRelations = DefaultEntitySchema.extend({
1219
1218
  startedDate: z28.string().nullable(),
1220
1219
  handledTime: z28.string().nullable(),
1221
1220
  firstResponseTime: z28.string().nullable(),
1222
- disposition: z28.string().nullable(),
1223
1221
  slaMeet: z28.string().nullable(),
1224
1222
  evaluateForm: EvaluateFormSchema.nullable(),
1225
1223
  wrapUpForm: WrapUpFormSchema.nullable(),
@@ -5989,6 +5987,7 @@ var UpdateWrapUpFormSchema = CreateWrapUpFormSchema.extend({
5989
5987
  });
5990
5988
  var CreateCXLogWrapUpFormSchema = z86.object({
5991
5989
  cxLogId: z86.string().uuid(),
5990
+ disposition: z86.string().optional(),
5992
5991
  tagIds: z86.array(z86.string().uuid()).optional(),
5993
5992
  note: z86.string().optional()
5994
5993
  });