@kl1/contracts 1.1.43 → 1.1.44

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
@@ -6944,7 +6944,6 @@ var CreateBusinessCalendarSchema = z94.object({
6944
6944
  description: z94.string().optional(),
6945
6945
  timeZone: z94.string(),
6946
6946
  isEnabled: z94.boolean(),
6947
- channelIds: z94.string().array(),
6948
6947
  businessHours: CreateBusinessHourSchema,
6949
6948
  holidays: CreateHolidaySchema
6950
6949
  });
@@ -6954,7 +6953,6 @@ var UpdateBusinessCalendarSchema = z94.object({
6954
6953
  description: z94.string().optional(),
6955
6954
  timeZone: z94.string(),
6956
6955
  isEnabled: z94.boolean(),
6957
- channelIds: z94.string().array(),
6958
6956
  businessHours: UpdateBusinessHourSchema,
6959
6957
  holidays: UpdateHolidaySchema
6960
6958
  });
@@ -6982,7 +6980,6 @@ var BusinessCalendarSchema = DefaultEntitySchema.extend({
6982
6980
  timeZone: z95.string(),
6983
6981
  isEnabled: z95.boolean(),
6984
6982
  isDefault: z95.boolean(),
6985
- channelIds: z95.string().array(),
6986
6983
  businessHours: BusinessHourSchema.array(),
6987
6984
  holidays: HolidaySchema.array()
6988
6985
  });