@kl1/contracts 1.2.6-uat → 1.2.8-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.mjs CHANGED
@@ -1193,7 +1193,7 @@ var CxLogSchemaWithRelations = DefaultEntitySchema.extend({
1193
1193
  firstAssignee: UserSchema.nullable(),
1194
1194
  agent: UserSchema.nullable(),
1195
1195
  closedAssignee: UserSchema.nullable(),
1196
- recordingFileUrl: z27.string().nullable()
1196
+ contactLabel: z27.array(z27.string())
1197
1197
  });
1198
1198
 
1199
1199
  // src/workflow-rule/schema.ts
@@ -6034,6 +6034,7 @@ var userContract = initContract26().router(
6034
6034
  pageSize: z77.coerce.number().optional(),
6035
6035
  // Don't add default 10. In some places, we need to fetch all users.
6036
6036
  keyword: z77.string().optional(),
6037
+ userIds: z77.array(z77.string()).optional(),
6037
6038
  withPresenceStatus: z77.string().transform((val) => val === "true").optional()
6038
6039
  }).optional(),
6039
6040
  responses: {
@@ -8252,7 +8253,7 @@ var CreateAutomationQueueSchema = z112.object({
8252
8253
  });
8253
8254
  var UpdateAutomationQueueSchema = CreateAutomationQueueSchema;
8254
8255
  var CheckHasAssignedRoomSchema = z112.object({
8255
- userId: z112.string().uuid(),
8256
+ userId: z112.string().uuid().optional(),
8256
8257
  queueId: z112.string().uuid().optional()
8257
8258
  });
8258
8259