@kl1/contracts 1.4.9 → 1.4.11

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
@@ -1231,7 +1231,9 @@ var GetRoomsSchema = z26.object({
1231
1231
  dispositions: z26.array(z26.string()).optional(),
1232
1232
  holdLabelId: z26.string().uuid().optional(),
1233
1233
  automationQueueId: z26.string().uuid().optional(),
1234
- botpressBotId: z26.string().uuid().optional()
1234
+ botpressBotId: z26.string().uuid().optional(),
1235
+ queueIds: z26.string().array().optional()
1236
+ // for room filter with queue
1235
1237
  });
1236
1238
  var UpdateRoomTagsAndNotesSchema = z26.object({
1237
1239
  note: z26.string().optional(),
@@ -3813,7 +3815,7 @@ var contactContract = initContract11().router(
3813
3815
  {
3814
3816
  create: {
3815
3817
  method: "POST",
3816
- path: "ccs/api/v1/contact",
3818
+ path: "cs/contact",
3817
3819
  body: ContactContractValidationSchema.create.request,
3818
3820
  responses: {
3819
3821
  201: DefaultSuccessResponseSchema.extend({
@@ -3930,7 +3932,7 @@ var contactContract = initContract11().router(
3930
3932
  },
3931
3933
  createContactByPhone: {
3932
3934
  method: "POST",
3933
- path: "cs/contact/phone",
3935
+ path: "ccs/api/v1/contact/phone",
3934
3936
  responses: {
3935
3937
  201: DefaultSuccessResponseSchema.extend({
3936
3938
  data: ContactContractValidationSchema.createContactByPhone.response