diff --git a/pages/api/attendees/[id].ts b/pages/api/attendees/[id].ts index b27c2e40fb..3d6d16c9a1 100644 --- a/pages/api/attendees/[id].ts +++ b/pages/api/attendees/[id].ts @@ -23,7 +23,6 @@ import { * required: true * description: Numeric ID of the attendee to get * example: 3 - * tags: * - attendees * responses: @@ -65,7 +64,6 @@ import { * example: 3 * required: true * description: Numeric ID of the attendee to edit - * tags: * - attendees * responses: @@ -84,7 +82,6 @@ import { * type: integer * required: true * description: Numeric ID of the attendee to delete - * tags: * - attendees * responses: diff --git a/pages/api/attendees/index.ts b/pages/api/attendees/index.ts index a0514bb8df..262f7a0e0c 100644 --- a/pages/api/attendees/index.ts +++ b/pages/api/attendees/index.ts @@ -11,7 +11,6 @@ import { schemaAttendeeCreateBodyParams, schemaAttendeeReadPublic } from "@lib/v * /attendees: * get: * summary: Find all attendees - * tags: * - attendees * responses: @@ -23,7 +22,6 @@ import { schemaAttendeeCreateBodyParams, schemaAttendeeReadPublic } from "@lib/v * description: No attendees were found * post: * summary: Creates a new attendee - * requestBody: * description: Create a new attendee related to one of your bookings * required: true diff --git a/pages/api/availabilities/[id].ts b/pages/api/availabilities/[id].ts index ad6826a6d3..21348a990c 100644 --- a/pages/api/availabilities/[id].ts +++ b/pages/api/availabilities/[id].ts @@ -25,7 +25,6 @@ import { * type: integer * required: true * description: Numeric ID of the availability to get - * tags: * - availabilities * externalDocs: @@ -46,7 +45,6 @@ import { * type: integer * required: true * description: Numeric ID of the availability to edit - * tags: * - availabilities * externalDocs: @@ -67,7 +65,6 @@ import { * type: integer * required: true * description: Numeric ID of the availability to delete - * tags: * - availabilities * externalDocs: diff --git a/pages/api/availabilities/index.ts b/pages/api/availabilities/index.ts index 7d8f18eac3..7ef5e65b8b 100644 --- a/pages/api/availabilities/index.ts +++ b/pages/api/availabilities/index.ts @@ -14,7 +14,6 @@ import { * /availabilities: * get: * summary: Find all availabilities - * tags: * - availabilities * externalDocs: @@ -28,7 +27,6 @@ import { * description: No availabilities were found * post: * summary: Creates a new availability - * tags: * - availabilities * externalDocs: diff --git a/pages/api/booking-references/[id].ts b/pages/api/booking-references/[id].ts index 4014707eb4..cba249df5a 100644 --- a/pages/api/booking-references/[id].ts +++ b/pages/api/booking-references/[id].ts @@ -26,7 +26,6 @@ import { * type: integer * required: true * description: Numeric ID of the booking reference to get - * tags: * - booking-references * responses: @@ -38,7 +37,6 @@ import { * description: BookingReference was not found * patch: * summary: Edit an existing booking reference - * parameters: * - in: path * name: id @@ -46,7 +44,6 @@ import { * type: integer * required: true * description: Numeric ID of the booking reference to edit - * tags: * - booking-references * responses: diff --git a/pages/api/booking-references/index.ts b/pages/api/booking-references/index.ts index c214b305db..7bd47a56f5 100644 --- a/pages/api/booking-references/index.ts +++ b/pages/api/booking-references/index.ts @@ -14,7 +14,6 @@ import { * /booking-references: * get: * summary: Find all booking references - * tags: * - booking-references * responses: @@ -26,13 +25,11 @@ import { * description: No booking references were found * post: * summary: Creates a new booking reference - * tags: * - booking-references * responses: * 201: * description: OK, booking reference created - * 400: * description: Bad request. BookingReference body is invalid. * 401: diff --git a/pages/api/bookings/[id].ts b/pages/api/bookings/[id].ts index 9c1b647b20..ddfa7a34ce 100644 --- a/pages/api/bookings/[id].ts +++ b/pages/api/bookings/[id].ts @@ -22,7 +22,6 @@ import { * type: integer * required: true * description: Numeric ID of the booking to get - * tags: * - bookings * responses: @@ -34,7 +33,6 @@ import { * description: Booking was not found * patch: * summary: Edit an existing booking - * parameters: * - in: path * name: id @@ -42,7 +40,6 @@ import { * type: integer * required: true * description: Numeric ID of the booking to edit - * tags: * - bookings * responses: @@ -61,7 +58,6 @@ import { * type: integer * required: true * description: Numeric ID of the booking to delete - * tags: * - bookings * responses: diff --git a/pages/api/bookings/index.ts b/pages/api/bookings/index.ts index 311a79b4dd..444fda9488 100644 --- a/pages/api/bookings/index.ts +++ b/pages/api/bookings/index.ts @@ -11,7 +11,6 @@ import { schemaBookingCreateBodyParams, schemaBookingReadPublic } from "@lib/val * /bookings: * get: * summary: Find all bookings - * tags: * - bookings * responses: @@ -23,7 +22,6 @@ import { schemaBookingCreateBodyParams, schemaBookingReadPublic } from "@lib/val * description: No bookings were found * post: * summary: Creates a new booking - * tags: * - bookings * responses: diff --git a/pages/api/daily-event-references/[id].ts b/pages/api/daily-event-references/[id].ts index a59beeebbf..7f1b026e5c 100644 --- a/pages/api/daily-event-references/[id].ts +++ b/pages/api/daily-event-references/[id].ts @@ -25,7 +25,6 @@ import { * type: integer * required: true * description: Numeric ID of the daily event reference to get - * tags: * - daily-event-references * responses: @@ -37,7 +36,6 @@ import { * description: DailyEventReference was not found * patch: * summary: Edit an existing daily event reference - * parameters: * - in: path * name: id @@ -45,7 +43,6 @@ import { * type: integer * required: true * description: Numeric ID of the daily event reference to edit - * tags: * - daily-event-references * responses: @@ -64,7 +61,6 @@ import { * type: integer * required: true * description: Numeric ID of the daily event reference to delete - * tags: * - daily-event-references * responses: diff --git a/pages/api/daily-event-references/index.ts b/pages/api/daily-event-references/index.ts index 290469f307..c129eef677 100644 --- a/pages/api/daily-event-references/index.ts +++ b/pages/api/daily-event-references/index.ts @@ -14,7 +14,6 @@ import { * /daily-event-references: * get: * summary: Find all daily event reference - * tags: * - daily-event-references * responses: @@ -26,7 +25,6 @@ import { * description: No daily event references were found * post: * summary: Creates a new daily event reference - * tags: * - daily-event-references * responses: diff --git a/pages/api/destination-calendars/[id].ts b/pages/api/destination-calendars/[id].ts index ecfe646b09..679dcd5d29 100644 --- a/pages/api/destination-calendars/[id].ts +++ b/pages/api/destination-calendars/[id].ts @@ -25,7 +25,6 @@ import { * type: integer * required: true * description: Numeric ID of the destination calendar to get - * tags: * - destination-calendars * responses: @@ -37,7 +36,6 @@ import { * description: DestinationCalendar was not found * patch: * summary: Edit an existing destination calendar - * parameters: * - in: path * name: id @@ -45,7 +43,6 @@ import { * type: integer * required: true * description: Numeric ID of the destination calendar to edit - * tags: * - destination-calendars * responses: diff --git a/pages/api/destination-calendars/index.ts b/pages/api/destination-calendars/index.ts index cf33e0fa58..81a3d36c97 100644 --- a/pages/api/destination-calendars/index.ts +++ b/pages/api/destination-calendars/index.ts @@ -14,7 +14,6 @@ import { * /destination-calendars: * get: * summary: Find all destination calendars - * tags: * - destination-calendars * responses: @@ -26,7 +25,6 @@ import { * description: No destination calendars were found * post: * summary: Creates a new destination calendar - * tags: * - destination-calendars * responses: diff --git a/pages/api/event-type-custom-inputs/[id].ts b/pages/api/event-type-custom-inputs/[id].ts index 6760e4b39c..0d84a2a6fb 100644 --- a/pages/api/event-type-custom-inputs/[id].ts +++ b/pages/api/event-type-custom-inputs/[id].ts @@ -25,7 +25,6 @@ import { * type: integer * required: true * description: Numeric ID of the eventTypeCustomInput to get - * tags: * - event-type-custom-inputs * responses: @@ -37,7 +36,6 @@ import { * description: EventType was not found * patch: * summary: Edit an existing eventTypeCustomInput - * parameters: * - in: path * name: id @@ -45,7 +43,6 @@ import { * type: integer * required: true * description: Numeric ID of the eventTypeCustomInput to edit - * tags: * - event-type-custom-inputs * responses: @@ -64,7 +61,6 @@ import { * type: integer * required: true * description: Numeric ID of the eventTypeCustomInput to delete - * tags: * - event-type-custom-inputs * responses: diff --git a/pages/api/event-type-custom-inputs/index.ts b/pages/api/event-type-custom-inputs/index.ts index e7cc037cd9..ac6c0f94cb 100644 --- a/pages/api/event-type-custom-inputs/index.ts +++ b/pages/api/event-type-custom-inputs/index.ts @@ -14,7 +14,6 @@ import { * /event-type-custom-inputs: * get: * summary: Find all eventTypeCustomInputs - * tags: * - event-type-custom-inputs * responses: @@ -26,7 +25,6 @@ import { * description: No eventTypeCustomInputs were found * post: * summary: Creates a new eventTypeCustomInput - * tags: * - event-type-custom-inputs * responses: diff --git a/pages/api/event-types/index.ts b/pages/api/event-types/index.ts index eb6c7d1290..4030e84186 100644 --- a/pages/api/event-types/index.ts +++ b/pages/api/event-types/index.ts @@ -11,7 +11,6 @@ import { schemaEventTypeBodyParams, schemaEventTypePublic } from "@lib/validatio * /event-types: * get: * summary: Find all event types - * tags: * - event-types * externalDocs: @@ -25,7 +24,6 @@ import { schemaEventTypeBodyParams, schemaEventTypePublic } from "@lib/validatio * description: No event types were found * post: * summary: Creates a new event type - * tags: * - event-types * externalDocs: diff --git a/pages/api/memberships/[id].ts b/pages/api/memberships/[id].ts index 3172428ec3..fa4c298be4 100644 --- a/pages/api/memberships/[id].ts +++ b/pages/api/memberships/[id].ts @@ -25,7 +25,6 @@ import { schemaQueryIdAsString, withValidQueryIdString } from "@lib/validations/ * type: integer * required: true * description: Numeric teamId of the membership to get - * tags: * - memberships * responses: @@ -37,7 +36,6 @@ import { schemaQueryIdAsString, withValidQueryIdString } from "@lib/validations/ * description: Membership was not found * patch: * summary: Edit an existing membership - * parameters: * - in: path * name: userId @@ -51,7 +49,6 @@ import { schemaQueryIdAsString, withValidQueryIdString } from "@lib/validations/ * type: integer * required: true * description: Numeric teamId of the membership to get - * tags: * - memberships * responses: @@ -76,7 +73,6 @@ import { schemaQueryIdAsString, withValidQueryIdString } from "@lib/validations/ * type: integer * required: true * description: Numeric teamId of the membership to get - * tags: * - memberships * responses: diff --git a/pages/api/memberships/index.ts b/pages/api/memberships/index.ts index 78072dd68d..137eaf48ac 100644 --- a/pages/api/memberships/index.ts +++ b/pages/api/memberships/index.ts @@ -11,7 +11,6 @@ import { schemaMembershipBodyParams, schemaMembershipPublic } from "@lib/validat * /memberships: * get: * summary: Find all memberships - * tags: * - memberships * responses: @@ -23,7 +22,6 @@ import { schemaMembershipBodyParams, schemaMembershipPublic } from "@lib/validat * description: No memberships were found * post: * summary: Creates a new membership - * tags: * - memberships * responses: diff --git a/pages/api/payments/[id].ts b/pages/api/payments/[id].ts index 9f0d8315dd..90882e760c 100644 --- a/pages/api/payments/[id].ts +++ b/pages/api/payments/[id].ts @@ -22,7 +22,6 @@ import { * type: integer * required: true * description: Numeric ID of the payment to get - * tags: * - payments * responses: diff --git a/pages/api/payments/index.ts b/pages/api/payments/index.ts index 5d16b911df..0c6eae0f85 100644 --- a/pages/api/payments/index.ts +++ b/pages/api/payments/index.ts @@ -11,7 +11,6 @@ import { schemaPaymentPublic } from "@lib/validations/payment"; * /payments: * get: * summary: Find all payments - * tags: * - payments * responses: diff --git a/pages/api/schedules/[id].ts b/pages/api/schedules/[id].ts index a2d9da0366..d6645597a6 100644 --- a/pages/api/schedules/[id].ts +++ b/pages/api/schedules/[id].ts @@ -22,7 +22,6 @@ import { * type: integer * required: true * description: Numeric ID of the schedule to get - * tags: * - schedules * responses: @@ -34,16 +33,13 @@ import { * description: Schedule was not found * patch: * summary: Edit an existing schedule - * parameters: - * - in: path * name: id * schema: * type: integer * required: true * description: Numeric ID of the schedule to edit - * tags: * - schedules * responses: @@ -62,7 +58,6 @@ import { * type: integer * required: true * description: Numeric ID of the schedule to delete - * tags: * - schedules * responses: diff --git a/pages/api/selected-calendars/[id].ts b/pages/api/selected-calendars/[id].ts index b3df3b88b2..a8e1e7ab15 100644 --- a/pages/api/selected-calendars/[id].ts +++ b/pages/api/selected-calendars/[id].ts @@ -34,7 +34,6 @@ import { schemaQueryIdAsString, withValidQueryIdString } from "@lib/validations/ * type: string * required: true * description: integration of the selected calendar to get - * tags: * - selected-calendars * responses: @@ -65,7 +64,6 @@ import { schemaQueryIdAsString, withValidQueryIdString } from "@lib/validations/ * type: string * required: true * description: integration of the selected calendar to get - * tags: * - selected-calendars * responses: diff --git a/pages/api/selected-calendars/index.ts b/pages/api/selected-calendars/index.ts index 055ae51346..c6e1b122d9 100644 --- a/pages/api/selected-calendars/index.ts +++ b/pages/api/selected-calendars/index.ts @@ -14,7 +14,6 @@ import { * /selected-calendars: * get: * summary: Find all selected calendars - * tags: * - selected-calendars * responses: @@ -26,7 +25,6 @@ import { * description: No selected calendars were found * post: * summary: Creates a new selected calendar - * tags: * - selected-calendars * responses: diff --git a/pages/api/teams/[id].ts b/pages/api/teams/[id].ts index 9fb11b5e50..0368a69f5c 100644 --- a/pages/api/teams/[id].ts +++ b/pages/api/teams/[id].ts @@ -22,7 +22,6 @@ import { schemaTeamBodyParams, schemaTeamPublic } from "@lib/validations/team"; * type: integer * required: true * description: Numeric ID of the team to get - * tags: * - teams * responses: @@ -32,7 +31,6 @@ import { schemaTeamBodyParams, schemaTeamPublic } from "@lib/validations/team"; * description: Authorization information is missing or invalid. * 404: * description: Team was not found - * patch: * summary: Edit an existing team * parameters: @@ -42,7 +40,6 @@ import { schemaTeamBodyParams, schemaTeamPublic } from "@lib/validations/team"; * type: integer * required: true * description: Numeric ID of the team to edit - * tags: * - teams * responses: @@ -52,7 +49,6 @@ import { schemaTeamBodyParams, schemaTeamPublic } from "@lib/validations/team"; * description: Bad request. Team body is invalid. * 401: * description: Authorization information is missing or invalid. - * delete: * summary: Remove an existing team * parameters: @@ -62,7 +58,6 @@ import { schemaTeamBodyParams, schemaTeamPublic } from "@lib/validations/team"; * type: integer * required: true * description: Numeric ID of the team to delete - * tags: * - teams * responses: diff --git a/pages/api/teams/index.ts b/pages/api/teams/index.ts index 11d646f70f..e5ae852dd8 100644 --- a/pages/api/teams/index.ts +++ b/pages/api/teams/index.ts @@ -12,7 +12,6 @@ import { schemaTeamBodyParams, schemaTeamPublic } from "@lib/validations/team"; * /teams: * get: * summary: Find all teams - * tags: * - teams * responses: @@ -24,7 +23,6 @@ import { schemaTeamBodyParams, schemaTeamPublic } from "@lib/validations/team"; * description: No teams were found * post: * summary: Creates a new team - * tags: * - teams * responses: diff --git a/pages/api/users/[id].ts b/pages/api/users/[id].ts index f8aed85d7d..4cea26e8e3 100644 --- a/pages/api/users/[id].ts +++ b/pages/api/users/[id].ts @@ -22,7 +22,6 @@ import { schemaUserEditBodyParams, schemaUserReadPublic } from "@lib/validations * type: integer * required: true * description: Numeric ID of the user to get - * tags: * - users * responses: @@ -34,7 +33,6 @@ import { schemaUserEditBodyParams, schemaUserReadPublic } from "@lib/validations * description: User was not found * patch: * summary: Edit an existing user - * parameters: * - in: path * name: id @@ -42,7 +40,6 @@ import { schemaUserEditBodyParams, schemaUserReadPublic } from "@lib/validations * type: integer * required: true * description: Numeric ID of the user to edit - * tags: * - users * responses: @@ -61,7 +58,6 @@ import { schemaUserEditBodyParams, schemaUserReadPublic } from "@lib/validations * type: integer * required: true * description: Numeric ID of the user to delete - * tags: * - users * responses: diff --git a/pages/api/users/index.ts b/pages/api/users/index.ts index c5dfd71b68..4ef860e18f 100644 --- a/pages/api/users/index.ts +++ b/pages/api/users/index.ts @@ -11,7 +11,6 @@ import { schemaUserReadPublic } from "@lib/validations/user"; * /users: * get: * summary: Find all users (admin only), returns your user if regular user. - * tags: * - users * responses: