@kl1/contracts 1.1.33-uat → 1.1.34-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
@@ -7172,6 +7172,7 @@ var BusinessCalendarSchema = DefaultEntitySchema.extend({
7172
7172
  description: z105.string().optional(),
7173
7173
  timeZone: z105.string(),
7174
7174
  isEnabled: z105.boolean(),
7175
+ isDefault: z105.boolean(),
7175
7176
  channelIds: z105.string().array(),
7176
7177
  businessHours: BusinessHourSchema.array(),
7177
7178
  holidays: HolidaySchema.array()
@@ -7202,7 +7203,7 @@ var businessCalendarContract = initContract40().router({
7202
7203
  }
7203
7204
  },
7204
7205
  updateBusinessCalendar: {
7205
- method: "POST",
7206
+ method: "PUT",
7206
7207
  path: "business-calendars/:id",
7207
7208
  pathParams: z106.object({ id: z106.string() }),
7208
7209
  body: UpdateBusinessCalendarSchema,