@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.js CHANGED
@@ -7241,6 +7241,7 @@ var BusinessCalendarSchema = DefaultEntitySchema.extend({
7241
7241
  description: import_zod105.default.string().optional(),
7242
7242
  timeZone: import_zod105.default.string(),
7243
7243
  isEnabled: import_zod105.default.boolean(),
7244
+ isDefault: import_zod105.default.boolean(),
7244
7245
  channelIds: import_zod105.default.string().array(),
7245
7246
  businessHours: BusinessHourSchema.array(),
7246
7247
  holidays: HolidaySchema.array()
@@ -7271,7 +7272,7 @@ var businessCalendarContract = (0, import_core40.initContract)().router({
7271
7272
  }
7272
7273
  },
7273
7274
  updateBusinessCalendar: {
7274
- method: "POST",
7275
+ method: "PUT",
7275
7276
  path: "business-calendars/:id",
7276
7277
  pathParams: import_zod106.default.object({ id: import_zod106.default.string() }),
7277
7278
  body: UpdateBusinessCalendarSchema,