{"version":3,"sources":["../../../src/events-v1-ticket-reservation-ticket-reservations.schemas.ts"],"sourcesContent":["import * as z from 'zod';\n\nexport const CreateTicketReservationRequest = z.object({\n  ticketReservation: z\n    .object({\n      _id: z\n        .string()\n        .describe('Ticket reservation ID.')\n        .regex(\n          /^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$/,\n          'Must be a valid GUID'\n        )\n        .optional()\n        .nullable(),\n      revision: z\n        .string()\n        .regex(/^-?\\d+$/, 'Must be a valid Int64 string')\n        .describe(\n          'Revision number, which increments by 1 each time the ticket reservation is updated. To prevent conflicting changes, the current revision must be passed when updating the ticket reservation.'\n        )\n        .optional()\n        .nullable(),\n      _createdDate: z\n        .date()\n        .describe('Date and time the ticket reservation was created.')\n        .optional()\n        .nullable(),\n      _updatedDate: z\n        .date()\n        .describe('Date and time the ticket reservation was updated.')\n        .optional()\n        .nullable(),\n      expirationDate: z\n        .date()\n        .describe(\n          \"Date and time when a `PENDING` ticket reservation will automatically expire if not confirmed.\\n\\nWhen a reservation expires, tickets are released back to the available inventory.\\nExpiration time is calculated based on the event's reservation duration settings. To set the reservation duration, call [Create Event](https://dev.wix.com/docs/api-reference/business-solutions/events/events-v3/create-event) API.\\n\\n**Note:** This field only applies to `PENDING` reservations.\"\n        )\n        .optional()\n        .nullable(),\n      status: z\n        .enum([\n          'PENDING',\n          'CONFIRMED',\n          'CANCELED',\n          'CANCELED_MANUALLY',\n          'EXPIRED',\n        ])\n        .optional(),\n      memberId: z\n        .string()\n        .describe(\n          'ID of the site member who created this reservation.\\n\\nOnly returned when the reservation was created by a logged-in site member.\\n\\nLearn more about [identities](https://dev.wix.com/docs/api-reference/articles/get-started/about-identities).'\n        )\n        .regex(\n          /^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$/,\n          'Must be a valid GUID'\n        )\n        .optional()\n        .nullable(),\n      visitorId: z\n        .string()\n        .describe(\n          'ID of the site visitor who created this reservation.\\n\\nReturned for both logged-in members and anonymous visitors.\\n\\nLearn more about [identities](https://dev.wix.com/docs/api-reference/articles/get-started/about-identities).'\n        )\n        .regex(\n          /^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$/,\n          'Must be a valid GUID'\n        )\n        .optional()\n        .nullable(),\n      tickets: z\n        .array(\n          z.object({\n            ticketLineItemId: z\n              .string()\n              .describe('Ticket line item ID.')\n              .regex(\n                /^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$/,\n                'Must be a valid GUID'\n              )\n              .optional()\n              .nullable(),\n            eventId: z\n              .string()\n              .describe('ID of the event these tickets are for.')\n              .regex(\n                /^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$/,\n                'Must be a valid GUID'\n              )\n              .optional()\n              .nullable(),\n            ticketDefinitionId: z\n              .string()\n              .describe(\n                'ID of the [ticket definition](https://dev.wix.com/docs/api-reference/business-solutions/events/ticket-definitions-v3/introduction) being reserved.'\n              )\n              .regex(\n                /^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$/,\n                'Must be a valid GUID'\n              ),\n            quantity: z\n              .number()\n              .int()\n              .describe('Number of tickets to reserve for this line item.')\n              .min(1)\n              .max(50),\n            ticketInfo: z\n              .object({\n                seatId: z\n                  .string()\n                  .describe(\n                    'Unique identifier for the assigned seat at the event venue.\\n\\nRequired for events with assigned seating. Each ticket in the line item can have a different seat assignment within the same section or area.'\n                  )\n                  .min(1)\n                  .max(36)\n                  .optional()\n                  .nullable(),\n                seatInfo: z\n                  .object({\n                    sectionLabel: z\n                      .string()\n                      .describe(\n                        'High-level division of the venue, where the place is located, such as `Orchestra`, `Balcony`, or `VIP Section`.'\n                      )\n                      .max(20)\n                      .optional()\n                      .nullable(),\n                    areaLabel: z\n                      .string()\n                      .describe(\n                        'General admission or general seating area label.'\n                      )\n                      .max(50)\n                      .optional()\n                      .nullable(),\n                    tableLabel: z\n                      .string()\n                      .describe('Table label for events with table seating.')\n                      .max(50)\n                      .optional()\n                      .nullable(),\n                    rowLabel: z\n                      .string()\n                      .describe('Row label within a section.')\n                      .max(50)\n                      .optional()\n                      .nullable(),\n                    seatLabel: z\n                      .string()\n                      .describe(\n                        'Individual seat label within a row or at a table.'\n                      )\n                      .max(4)\n                      .optional()\n                      .nullable(),\n                    configurationId: z\n                      .string()\n                      .describe(\n                        'Seating plan ID from the Wix Events & Tickets app.'\n                      )\n                      .regex(\n                        /^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$/,\n                        'Must be a valid GUID'\n                      )\n                      .optional()\n                      .nullable(),\n                  })\n                  .describe(\n                    'Detailed seat location information.\\n\\nIncludes section, row, seat number, and other venue-specific identifiers to help customers locate their assigned seats.'\n                  )\n                  .optional(),\n                guestPrice: z\n                  .string()\n                  .describe(\n                    'The guest enters the ticket price. This pricing method is applied to donation.'\n                  )\n                  .optional()\n                  .nullable(),\n                pricingOptionId: z\n                  .string()\n                  .describe(\n                    'ID of the pricing option selected for this ticket.'\n                  )\n                  .regex(\n                    /^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$/,\n                    'Must be a valid GUID'\n                  )\n                  .optional()\n                  .nullable(),\n                pricingOptionName: z\n                  .string()\n                  .describe('Display name of the selected pricing option.')\n                  .max(200)\n                  .optional()\n                  .nullable(),\n                pricingPlan: z\n                  .object({\n                    orderId: z\n                      .string()\n                      .describe(\n                        'Order ID of the pricing plan purchase.\\n\\nReferences the specific order through which the customer acquired their subscription plan benefits.'\n                      )\n                      .regex(\n                        /^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$/,\n                        'Must be a valid GUID'\n                      )\n                      .optional(),\n                    planId: z\n                      .string()\n                      .describe(\n                        'Unique identifier of the pricing plan.\\n\\nReferences the specific subscription plan that grants pricing benefits or discounts for this ticket reservation.'\n                      )\n                      .regex(\n                        /^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$/,\n                        'Must be a valid GUID'\n                      )\n                      .optional(),\n                  })\n                  .describe(\n                    'Pricing plan benefits applied to this ticket.\\n\\nContains information about subscription plan discounts or benefits that affect the ticket pricing for this customer.'\n                  )\n                  .optional(),\n                priceOverride: z\n                  .string()\n                  .describe(\n                    'Override price that replaces the standard ticket price.\\n\\nUsed for promotional pricing, staff discounts, or other special pricing that differs from the standard ticket definition price.'\n                  )\n                  .optional()\n                  .nullable(),\n              })\n              .describe(\n                'Detailed information about the tickets in this line item.'\n              )\n              .optional(),\n            removedQuantity: z\n              .number()\n              .int()\n              .describe(\n                'Number of tickets that are removed from this line item after manually updating reservation in the dashboard.'\n              )\n              .min(0)\n              .max(50)\n              .optional()\n              .nullable(),\n            policy: z\n              .string()\n              .describe('Terms and conditions that apply to this ticket type.')\n              .min(1)\n              .max(50000)\n              .optional()\n              .nullable(),\n            ticketName: z\n              .string()\n              .describe('Display name of the ticket type for this line item.')\n              .min(1)\n              .max(30)\n              .optional()\n              .nullable(),\n            price: z\n              .object({\n                value: z\n                  .string()\n                  .describe(\n                    'Monetary amount. Decimal string with a period as a decimal separator (for example, 3.99). Optionally, a single (-), to indicate that the amount is negative.'\n                  )\n                  .optional(),\n                currency: z\n                  .string()\n                  .describe(\n                    'Currency code. Must be a valid [ISO 4217](https://www.iso.org/iso-4217-currency-codes.html) currency code (for example, USD).'\n                  )\n                  .optional(),\n              })\n              .describe(\n                'Price per individual ticket in this line item.\\n\\nRepresents the base price for one ticket before any quantity calculations. This price includes any pricing option discounts but excludes service fees.'\n              )\n              .optional(),\n            subTotal: z\n              .object({\n                value: z\n                  .string()\n                  .describe(\n                    'Monetary amount. Decimal string with a period as a decimal separator (for example, 3.99). Optionally, a single (-), to indicate that the amount is negative.'\n                  )\n                  .optional(),\n                currency: z\n                  .string()\n                  .describe(\n                    'Currency code. Must be a valid [ISO 4217](https://www.iso.org/iso-4217-currency-codes.html) currency code (for example, USD).'\n                  )\n                  .optional(),\n              })\n              .describe(\n                'Total price for all tickets in this line item.\\n\\nCalculated as `price` multiplied by `quantity`. This represents the subtotal for this line item before taxes and service fees are applied.'\n              )\n              .optional(),\n          })\n        )\n        .min(1)\n        .max(50)\n        .optional(),\n      additionalReservationSettings: z\n        .object({\n          disableTicketLimitValidation: z\n            .boolean()\n            .describe(\n              'Whether to bypass ticket availability limits when creating the reservation.\\n\\nWhen `true`, allows creating reservations even if tickets appear sold out. Use with caution as this can lead to overselling. Typically used for admin purposes or special circumstances.'\n            )\n            .optional()\n            .nullable(),\n          enableHiddenTicketReservation: z\n            .boolean()\n            .describe(\n              'Whether to allow reservations for tickets marked as hidden.\\n\\nHidden tickets are not displayed in the standard ticket selection on the site. Enable this to allow reservations for hidden tickets through direct API calls.'\n            )\n            .optional()\n            .nullable(),\n        })\n        .describe(\n          'Advanced configuration options that modify default reservation behavior.\\n\\nUse these settings to override standard validation rules, such as availability limits or hidden ticket restrictions.'\n        )\n        .optional(),\n      extendedFields: z\n        .object({\n          namespaces: z\n            .record(z.string(), z.record(z.string(), z.any()))\n            .describe(\n              'Extended field data. Each key corresponds to the namespace of the app that created the extended fields.\\nThe value of each key is structured according to the schema defined when the extended fields were configured.\\n\\nYou can only access fields for which you have the appropriate permissions.\\n\\nLearn more about [extended fields](https://dev.wix.com/docs/rest/articles/getting-started/extended-fields).'\n            )\n            .optional(),\n        })\n        .describe(\n          'Extended fields allow you to add custom properties beyond the standard reservation data.\\n\\nLearn more about [extended fields](https://dev.wix.com/docs/build-apps/develop-your-app/extensions/backend-extensions/schema-plugins/about-schema-plugin-extensions).'\n        )\n        .optional(),\n      tags: z\n        .object({\n          privateTags: z\n            .object({ tagIds: z.array(z.string()).max(100).optional() })\n            .describe(\n              'Tags that require an additional permission in order to access them, normally not given to site members or visitors.'\n            )\n            .optional(),\n          tags: z\n            .object({ tagIds: z.array(z.string()).max(100).optional() })\n            .describe(\n              'Tags that are exposed to anyone who has access to the labeled entity itself, including site members and visitors.'\n            )\n            .optional(),\n        })\n        .describe(\n          'Tags allow you to classify ticket reservations.\\n\\nLearn more about [tags](https://dev.wix.com/docs/rest/business-management/tags/introduction).'\n        )\n        .optional(),\n    })\n    .describe(\n      'Ticket reservation details to create.\\n\\nMust include at least one ticket line item with valid ticket definition ID\\nand quantity. Additional settings like seat assignments and pricing options\\ncan be specified in the ticket info.'\n    ),\n});\nexport const CreateTicketReservationResponse = z.object({\n  _id: z\n    .string()\n    .describe('Ticket reservation ID.')\n    .regex(\n      /^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$/,\n      'Must be a valid GUID'\n    )\n    .optional()\n    .nullable(),\n  revision: z\n    .string()\n    .regex(/^-?\\d+$/, 'Must be a valid Int64 string')\n    .describe(\n      'Revision number, which increments by 1 each time the ticket reservation is updated. To prevent conflicting changes, the current revision must be passed when updating the ticket reservation.'\n    )\n    .optional()\n    .nullable(),\n  _createdDate: z\n    .date()\n    .describe('Date and time the ticket reservation was created.')\n    .optional()\n    .nullable(),\n  _updatedDate: z\n    .date()\n    .describe('Date and time the ticket reservation was updated.')\n    .optional()\n    .nullable(),\n  expirationDate: z\n    .date()\n    .describe(\n      \"Date and time when a `PENDING` ticket reservation will automatically expire if not confirmed.\\n\\nWhen a reservation expires, tickets are released back to the available inventory.\\nExpiration time is calculated based on the event's reservation duration settings. To set the reservation duration, call [Create Event](https://dev.wix.com/docs/api-reference/business-solutions/events/events-v3/create-event) API.\\n\\n**Note:** This field only applies to `PENDING` reservations.\"\n    )\n    .optional()\n    .nullable(),\n  status: z\n    .enum(['PENDING', 'CONFIRMED', 'CANCELED', 'CANCELED_MANUALLY', 'EXPIRED'])\n    .describe('Reservation status.')\n    .optional(),\n  memberId: z\n    .string()\n    .describe(\n      'ID of the site member who created this reservation.\\n\\nOnly returned when the reservation was created by a logged-in site member.\\n\\nLearn more about [identities](https://dev.wix.com/docs/api-reference/articles/get-started/about-identities).'\n    )\n    .regex(\n      /^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$/,\n      'Must be a valid GUID'\n    )\n    .optional()\n    .nullable(),\n  visitorId: z\n    .string()\n    .describe(\n      'ID of the site visitor who created this reservation.\\n\\nReturned for both logged-in members and anonymous visitors.\\n\\nLearn more about [identities](https://dev.wix.com/docs/api-reference/articles/get-started/about-identities).'\n    )\n    .regex(\n      /^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$/,\n      'Must be a valid GUID'\n    )\n    .optional()\n    .nullable(),\n  tickets: z\n    .array(\n      z.object({\n        ticketLineItemId: z\n          .string()\n          .describe('Ticket line item ID.')\n          .regex(\n            /^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$/,\n            'Must be a valid GUID'\n          )\n          .optional()\n          .nullable(),\n        eventId: z\n          .string()\n          .describe('ID of the event these tickets are for.')\n          .regex(\n            /^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$/,\n            'Must be a valid GUID'\n          )\n          .optional()\n          .nullable(),\n        ticketDefinitionId: z\n          .string()\n          .describe(\n            'ID of the [ticket definition](https://dev.wix.com/docs/api-reference/business-solutions/events/ticket-definitions-v3/introduction) being reserved.'\n          )\n          .regex(\n            /^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$/,\n            'Must be a valid GUID'\n          )\n          .optional()\n          .nullable(),\n        quantity: z\n          .number()\n          .int()\n          .describe('Number of tickets to reserve for this line item.')\n          .min(1)\n          .max(50)\n          .optional()\n          .nullable(),\n        ticketInfo: z\n          .object({\n            seatId: z\n              .string()\n              .describe(\n                'Unique identifier for the assigned seat at the event venue.\\n\\nRequired for events with assigned seating. Each ticket in the line item can have a different seat assignment within the same section or area.'\n              )\n              .min(1)\n              .max(36)\n              .optional()\n              .nullable(),\n            seatInfo: z\n              .object({\n                sectionLabel: z\n                  .string()\n                  .describe(\n                    'High-level division of the venue, where the place is located, such as `Orchestra`, `Balcony`, or `VIP Section`.'\n                  )\n                  .max(20)\n                  .optional()\n                  .nullable(),\n                areaLabel: z\n                  .string()\n                  .describe('General admission or general seating area label.')\n                  .max(50)\n                  .optional()\n                  .nullable(),\n                tableLabel: z\n                  .string()\n                  .describe('Table label for events with table seating.')\n                  .max(50)\n                  .optional()\n                  .nullable(),\n                rowLabel: z\n                  .string()\n                  .describe('Row label within a section.')\n                  .max(50)\n                  .optional()\n                  .nullable(),\n                seatLabel: z\n                  .string()\n                  .describe('Individual seat label within a row or at a table.')\n                  .max(4)\n                  .optional()\n                  .nullable(),\n                configurationId: z\n                  .string()\n                  .describe(\n                    'Seating plan ID from the Wix Events & Tickets app.'\n                  )\n                  .regex(\n                    /^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$/,\n                    'Must be a valid GUID'\n                  )\n                  .optional()\n                  .nullable(),\n              })\n              .describe(\n                'Detailed seat location information.\\n\\nIncludes section, row, seat number, and other venue-specific identifiers to help customers locate their assigned seats.'\n              )\n              .optional(),\n            guestPrice: z\n              .string()\n              .describe(\n                'The guest enters the ticket price. This pricing method is applied to donation.'\n              )\n              .optional()\n              .nullable(),\n            pricingOptionId: z\n              .string()\n              .describe('ID of the pricing option selected for this ticket.')\n              .regex(\n                /^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$/,\n                'Must be a valid GUID'\n              )\n              .optional()\n              .nullable(),\n            pricingOptionName: z\n              .string()\n              .describe('Display name of the selected pricing option.')\n              .max(200)\n              .optional()\n              .nullable(),\n            pricingPlan: z\n              .object({\n                orderId: z\n                  .string()\n                  .describe(\n                    'Order ID of the pricing plan purchase.\\n\\nReferences the specific order through which the customer acquired their subscription plan benefits.'\n                  )\n                  .regex(\n                    /^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$/,\n                    'Must be a valid GUID'\n                  )\n                  .optional(),\n                planId: z\n                  .string()\n                  .describe(\n                    'Unique identifier of the pricing plan.\\n\\nReferences the specific subscription plan that grants pricing benefits or discounts for this ticket reservation.'\n                  )\n                  .regex(\n                    /^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$/,\n                    'Must be a valid GUID'\n                  )\n                  .optional(),\n              })\n              .describe(\n                'Pricing plan benefits applied to this ticket.\\n\\nContains information about subscription plan discounts or benefits that affect the ticket pricing for this customer.'\n              )\n              .optional(),\n            priceOverride: z\n              .string()\n              .describe(\n                'Override price that replaces the standard ticket price.\\n\\nUsed for promotional pricing, staff discounts, or other special pricing that differs from the standard ticket definition price.'\n              )\n              .optional()\n              .nullable(),\n          })\n          .describe('Detailed information about the tickets in this line item.')\n          .optional(),\n        removedQuantity: z\n          .number()\n          .int()\n          .describe(\n            'Number of tickets that are removed from this line item after manually updating reservation in the dashboard.'\n          )\n          .min(0)\n          .max(50)\n          .optional()\n          .nullable(),\n        policy: z\n          .string()\n          .describe('Terms and conditions that apply to this ticket type.')\n          .min(1)\n          .max(50000)\n          .optional()\n          .nullable(),\n        ticketName: z\n          .string()\n          .describe('Display name of the ticket type for this line item.')\n          .min(1)\n          .max(30)\n          .optional()\n          .nullable(),\n        price: z\n          .object({\n            value: z\n              .string()\n              .describe(\n                'Monetary amount. Decimal string with a period as a decimal separator (for example, 3.99). Optionally, a single (-), to indicate that the amount is negative.'\n              )\n              .optional(),\n            currency: z\n              .string()\n              .describe(\n                'Currency code. Must be a valid [ISO 4217](https://www.iso.org/iso-4217-currency-codes.html) currency code (for example, USD).'\n              )\n              .optional(),\n          })\n          .describe(\n            'Price per individual ticket in this line item.\\n\\nRepresents the base price for one ticket before any quantity calculations. This price includes any pricing option discounts but excludes service fees.'\n          )\n          .optional(),\n        subTotal: z\n          .object({\n            value: z\n              .string()\n              .describe(\n                'Monetary amount. Decimal string with a period as a decimal separator (for example, 3.99). Optionally, a single (-), to indicate that the amount is negative.'\n              )\n              .optional(),\n            currency: z\n              .string()\n              .describe(\n                'Currency code. Must be a valid [ISO 4217](https://www.iso.org/iso-4217-currency-codes.html) currency code (for example, USD).'\n              )\n              .optional(),\n          })\n          .describe(\n            'Total price for all tickets in this line item.\\n\\nCalculated as `price` multiplied by `quantity`. This represents the subtotal for this line item before taxes and service fees are applied.'\n          )\n          .optional(),\n      })\n    )\n    .min(1)\n    .max(50)\n    .optional(),\n  additionalReservationSettings: z\n    .object({\n      disableTicketLimitValidation: z\n        .boolean()\n        .describe(\n          'Whether to bypass ticket availability limits when creating the reservation.\\n\\nWhen `true`, allows creating reservations even if tickets appear sold out. Use with caution as this can lead to overselling. Typically used for admin purposes or special circumstances.'\n        )\n        .optional()\n        .nullable(),\n      enableHiddenTicketReservation: z\n        .boolean()\n        .describe(\n          'Whether to allow reservations for tickets marked as hidden.\\n\\nHidden tickets are not displayed in the standard ticket selection on the site. Enable this to allow reservations for hidden tickets through direct API calls.'\n        )\n        .optional()\n        .nullable(),\n    })\n    .describe(\n      'Advanced configuration options that modify default reservation behavior.\\n\\nUse these settings to override standard validation rules, such as availability limits or hidden ticket restrictions.'\n    )\n    .optional(),\n  extendedFields: z\n    .object({\n      namespaces: z\n        .record(z.string(), z.record(z.string(), z.any()))\n        .describe(\n          'Extended field data. Each key corresponds to the namespace of the app that created the extended fields.\\nThe value of each key is structured according to the schema defined when the extended fields were configured.\\n\\nYou can only access fields for which you have the appropriate permissions.\\n\\nLearn more about [extended fields](https://dev.wix.com/docs/rest/articles/getting-started/extended-fields).'\n        )\n        .optional(),\n    })\n    .describe(\n      'Extended fields allow you to add custom properties beyond the standard reservation data.\\n\\nLearn more about [extended fields](https://dev.wix.com/docs/build-apps/develop-your-app/extensions/backend-extensions/schema-plugins/about-schema-plugin-extensions).'\n    )\n    .optional(),\n  tags: z\n    .object({\n      privateTags: z\n        .object({ tagIds: z.array(z.string()).max(100).optional() })\n        .describe(\n          'Tags that require an additional permission in order to access them, normally not given to site members or visitors.'\n        )\n        .optional(),\n      tags: z\n        .object({ tagIds: z.array(z.string()).max(100).optional() })\n        .describe(\n          'Tags that are exposed to anyone who has access to the labeled entity itself, including site members and visitors.'\n        )\n        .optional(),\n    })\n    .describe(\n      'Tags allow you to classify ticket reservations.\\n\\nLearn more about [tags](https://dev.wix.com/docs/rest/business-management/tags/introduction).'\n    )\n    .optional(),\n});\nexport const GetTicketReservationRequest = z.object({\n  ticketReservationId: z\n    .string()\n    .describe('ID of the ticket reservation to retrieve.')\n    .regex(\n      /^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$/,\n      'Must be a valid GUID'\n    ),\n});\nexport const GetTicketReservationResponse = z.object({\n  _id: z\n    .string()\n    .describe('Ticket reservation ID.')\n    .regex(\n      /^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$/,\n      'Must be a valid GUID'\n    )\n    .optional()\n    .nullable(),\n  revision: z\n    .string()\n    .regex(/^-?\\d+$/, 'Must be a valid Int64 string')\n    .describe(\n      'Revision number, which increments by 1 each time the ticket reservation is updated. To prevent conflicting changes, the current revision must be passed when updating the ticket reservation.'\n    )\n    .optional()\n    .nullable(),\n  _createdDate: z\n    .date()\n    .describe('Date and time the ticket reservation was created.')\n    .optional()\n    .nullable(),\n  _updatedDate: z\n    .date()\n    .describe('Date and time the ticket reservation was updated.')\n    .optional()\n    .nullable(),\n  expirationDate: z\n    .date()\n    .describe(\n      \"Date and time when a `PENDING` ticket reservation will automatically expire if not confirmed.\\n\\nWhen a reservation expires, tickets are released back to the available inventory.\\nExpiration time is calculated based on the event's reservation duration settings. To set the reservation duration, call [Create Event](https://dev.wix.com/docs/api-reference/business-solutions/events/events-v3/create-event) API.\\n\\n**Note:** This field only applies to `PENDING` reservations.\"\n    )\n    .optional()\n    .nullable(),\n  status: z\n    .enum(['PENDING', 'CONFIRMED', 'CANCELED', 'CANCELED_MANUALLY', 'EXPIRED'])\n    .describe('Reservation status.')\n    .optional(),\n  memberId: z\n    .string()\n    .describe(\n      'ID of the site member who created this reservation.\\n\\nOnly returned when the reservation was created by a logged-in site member.\\n\\nLearn more about [identities](https://dev.wix.com/docs/api-reference/articles/get-started/about-identities).'\n    )\n    .regex(\n      /^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$/,\n      'Must be a valid GUID'\n    )\n    .optional()\n    .nullable(),\n  visitorId: z\n    .string()\n    .describe(\n      'ID of the site visitor who created this reservation.\\n\\nReturned for both logged-in members and anonymous visitors.\\n\\nLearn more about [identities](https://dev.wix.com/docs/api-reference/articles/get-started/about-identities).'\n    )\n    .regex(\n      /^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$/,\n      'Must be a valid GUID'\n    )\n    .optional()\n    .nullable(),\n  tickets: z\n    .array(\n      z.object({\n        ticketLineItemId: z\n          .string()\n          .describe('Ticket line item ID.')\n          .regex(\n            /^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$/,\n            'Must be a valid GUID'\n          )\n          .optional()\n          .nullable(),\n        eventId: z\n          .string()\n          .describe('ID of the event these tickets are for.')\n          .regex(\n            /^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$/,\n            'Must be a valid GUID'\n          )\n          .optional()\n          .nullable(),\n        ticketDefinitionId: z\n          .string()\n          .describe(\n            'ID of the [ticket definition](https://dev.wix.com/docs/api-reference/business-solutions/events/ticket-definitions-v3/introduction) being reserved.'\n          )\n          .regex(\n            /^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$/,\n            'Must be a valid GUID'\n          )\n          .optional()\n          .nullable(),\n        quantity: z\n          .number()\n          .int()\n          .describe('Number of tickets to reserve for this line item.')\n          .min(1)\n          .max(50)\n          .optional()\n          .nullable(),\n        ticketInfo: z\n          .object({\n            seatId: z\n              .string()\n              .describe(\n                'Unique identifier for the assigned seat at the event venue.\\n\\nRequired for events with assigned seating. Each ticket in the line item can have a different seat assignment within the same section or area.'\n              )\n              .min(1)\n              .max(36)\n              .optional()\n              .nullable(),\n            seatInfo: z\n              .object({\n                sectionLabel: z\n                  .string()\n                  .describe(\n                    'High-level division of the venue, where the place is located, such as `Orchestra`, `Balcony`, or `VIP Section`.'\n                  )\n                  .max(20)\n                  .optional()\n                  .nullable(),\n                areaLabel: z\n                  .string()\n                  .describe('General admission or general seating area label.')\n                  .max(50)\n                  .optional()\n                  .nullable(),\n                tableLabel: z\n                  .string()\n                  .describe('Table label for events with table seating.')\n                  .max(50)\n                  .optional()\n                  .nullable(),\n                rowLabel: z\n                  .string()\n                  .describe('Row label within a section.')\n                  .max(50)\n                  .optional()\n                  .nullable(),\n                seatLabel: z\n                  .string()\n                  .describe('Individual seat label within a row or at a table.')\n                  .max(4)\n                  .optional()\n                  .nullable(),\n                configurationId: z\n                  .string()\n                  .describe(\n                    'Seating plan ID from the Wix Events & Tickets app.'\n                  )\n                  .regex(\n                    /^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$/,\n                    'Must be a valid GUID'\n                  )\n                  .optional()\n                  .nullable(),\n              })\n              .describe(\n                'Detailed seat location information.\\n\\nIncludes section, row, seat number, and other venue-specific identifiers to help customers locate their assigned seats.'\n              )\n              .optional(),\n            guestPrice: z\n              .string()\n              .describe(\n                'The guest enters the ticket price. This pricing method is applied to donation.'\n              )\n              .optional()\n              .nullable(),\n            pricingOptionId: z\n              .string()\n              .describe('ID of the pricing option selected for this ticket.')\n              .regex(\n                /^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$/,\n                'Must be a valid GUID'\n              )\n              .optional()\n              .nullable(),\n            pricingOptionName: z\n              .string()\n              .describe('Display name of the selected pricing option.')\n              .max(200)\n              .optional()\n              .nullable(),\n            pricingPlan: z\n              .object({\n                orderId: z\n                  .string()\n                  .describe(\n                    'Order ID of the pricing plan purchase.\\n\\nReferences the specific order through which the customer acquired their subscription plan benefits.'\n                  )\n                  .regex(\n                    /^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$/,\n                    'Must be a valid GUID'\n                  )\n                  .optional(),\n                planId: z\n                  .string()\n                  .describe(\n                    'Unique identifier of the pricing plan.\\n\\nReferences the specific subscription plan that grants pricing benefits or discounts for this ticket reservation.'\n                  )\n                  .regex(\n                    /^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$/,\n                    'Must be a valid GUID'\n                  )\n                  .optional(),\n              })\n              .describe(\n                'Pricing plan benefits applied to this ticket.\\n\\nContains information about subscription plan discounts or benefits that affect the ticket pricing for this customer.'\n              )\n              .optional(),\n            priceOverride: z\n              .string()\n              .describe(\n                'Override price that replaces the standard ticket price.\\n\\nUsed for promotional pricing, staff discounts, or other special pricing that differs from the standard ticket definition price.'\n              )\n              .optional()\n              .nullable(),\n          })\n          .describe('Detailed information about the tickets in this line item.')\n          .optional(),\n        removedQuantity: z\n          .number()\n          .int()\n          .describe(\n            'Number of tickets that are removed from this line item after manually updating reservation in the dashboard.'\n          )\n          .min(0)\n          .max(50)\n          .optional()\n          .nullable(),\n        policy: z\n          .string()\n          .describe('Terms and conditions that apply to this ticket type.')\n          .min(1)\n          .max(50000)\n          .optional()\n          .nullable(),\n        ticketName: z\n          .string()\n          .describe('Display name of the ticket type for this line item.')\n          .min(1)\n          .max(30)\n          .optional()\n          .nullable(),\n        price: z\n          .object({\n            value: z\n              .string()\n              .describe(\n                'Monetary amount. Decimal string with a period as a decimal separator (for example, 3.99). Optionally, a single (-), to indicate that the amount is negative.'\n              )\n              .optional(),\n            currency: z\n              .string()\n              .describe(\n                'Currency code. Must be a valid [ISO 4217](https://www.iso.org/iso-4217-currency-codes.html) currency code (for example, USD).'\n              )\n              .optional(),\n          })\n          .describe(\n            'Price per individual ticket in this line item.\\n\\nRepresents the base price for one ticket before any quantity calculations. This price includes any pricing option discounts but excludes service fees.'\n          )\n          .optional(),\n        subTotal: z\n          .object({\n            value: z\n              .string()\n              .describe(\n                'Monetary amount. Decimal string with a period as a decimal separator (for example, 3.99). Optionally, a single (-), to indicate that the amount is negative.'\n              )\n              .optional(),\n            currency: z\n              .string()\n              .describe(\n                'Currency code. Must be a valid [ISO 4217](https://www.iso.org/iso-4217-currency-codes.html) currency code (for example, USD).'\n              )\n              .optional(),\n          })\n          .describe(\n            'Total price for all tickets in this line item.\\n\\nCalculated as `price` multiplied by `quantity`. This represents the subtotal for this line item before taxes and service fees are applied.'\n          )\n          .optional(),\n      })\n    )\n    .min(1)\n    .max(50)\n    .optional(),\n  additionalReservationSettings: z\n    .object({\n      disableTicketLimitValidation: z\n        .boolean()\n        .describe(\n          'Whether to bypass ticket availability limits when creating the reservation.\\n\\nWhen `true`, allows creating reservations even if tickets appear sold out. Use with caution as this can lead to overselling. Typically used for admin purposes or special circumstances.'\n        )\n        .optional()\n        .nullable(),\n      enableHiddenTicketReservation: z\n        .boolean()\n        .describe(\n          'Whether to allow reservations for tickets marked as hidden.\\n\\nHidden tickets are not displayed in the standard ticket selection on the site. Enable this to allow reservations for hidden tickets through direct API calls.'\n        )\n        .optional()\n        .nullable(),\n    })\n    .describe(\n      'Advanced configuration options that modify default reservation behavior.\\n\\nUse these settings to override standard validation rules, such as availability limits or hidden ticket restrictions.'\n    )\n    .optional(),\n  extendedFields: z\n    .object({\n      namespaces: z\n        .record(z.string(), z.record(z.string(), z.any()))\n        .describe(\n          'Extended field data. Each key corresponds to the namespace of the app that created the extended fields.\\nThe value of each key is structured according to the schema defined when the extended fields were configured.\\n\\nYou can only access fields for which you have the appropriate permissions.\\n\\nLearn more about [extended fields](https://dev.wix.com/docs/rest/articles/getting-started/extended-fields).'\n        )\n        .optional(),\n    })\n    .describe(\n      'Extended fields allow you to add custom properties beyond the standard reservation data.\\n\\nLearn more about [extended fields](https://dev.wix.com/docs/build-apps/develop-your-app/extensions/backend-extensions/schema-plugins/about-schema-plugin-extensions).'\n    )\n    .optional(),\n  tags: z\n    .object({\n      privateTags: z\n        .object({ tagIds: z.array(z.string()).max(100).optional() })\n        .describe(\n          'Tags that require an additional permission in order to access them, normally not given to site members or visitors.'\n        )\n        .optional(),\n      tags: z\n        .object({ tagIds: z.array(z.string()).max(100).optional() })\n        .describe(\n          'Tags that are exposed to anyone who has access to the labeled entity itself, including site members and visitors.'\n        )\n        .optional(),\n    })\n    .describe(\n      'Tags allow you to classify ticket reservations.\\n\\nLearn more about [tags](https://dev.wix.com/docs/rest/business-management/tags/introduction).'\n    )\n    .optional(),\n});\nexport const DeleteTicketReservationRequest = z.object({\n  ticketReservationId: z\n    .string()\n    .describe('ID of the ticket reservation to delete.')\n    .regex(\n      /^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$/,\n      'Must be a valid GUID'\n    ),\n});\nexport const DeleteTicketReservationResponse = z.object({\n  ticketReservation: z\n    .object({\n      _id: z\n        .string()\n        .describe('Ticket reservation ID.')\n        .regex(\n          /^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$/,\n          'Must be a valid GUID'\n        )\n        .optional()\n        .nullable(),\n      revision: z\n        .string()\n        .regex(/^-?\\d+$/, 'Must be a valid Int64 string')\n        .describe(\n          'Revision number, which increments by 1 each time the ticket reservation is updated. To prevent conflicting changes, the current revision must be passed when updating the ticket reservation.'\n        )\n        .optional()\n        .nullable(),\n      _createdDate: z\n        .date()\n        .describe('Date and time the ticket reservation was created.')\n        .optional()\n        .nullable(),\n      _updatedDate: z\n        .date()\n        .describe('Date and time the ticket reservation was updated.')\n        .optional()\n        .nullable(),\n      expirationDate: z\n        .date()\n        .describe(\n          \"Date and time when a `PENDING` ticket reservation will automatically expire if not confirmed.\\n\\nWhen a reservation expires, tickets are released back to the available inventory.\\nExpiration time is calculated based on the event's reservation duration settings. To set the reservation duration, call [Create Event](https://dev.wix.com/docs/api-reference/business-solutions/events/events-v3/create-event) API.\\n\\n**Note:** This field only applies to `PENDING` reservations.\"\n        )\n        .optional()\n        .nullable(),\n      status: z\n        .enum([\n          'PENDING',\n          'CONFIRMED',\n          'CANCELED',\n          'CANCELED_MANUALLY',\n          'EXPIRED',\n        ])\n        .describe('Reservation status.')\n        .optional(),\n      memberId: z\n        .string()\n        .describe(\n          'ID of the site member who created this reservation.\\n\\nOnly returned when the reservation was created by a logged-in site member.\\n\\nLearn more about [identities](https://dev.wix.com/docs/api-reference/articles/get-started/about-identities).'\n        )\n        .regex(\n          /^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$/,\n          'Must be a valid GUID'\n        )\n        .optional()\n        .nullable(),\n      visitorId: z\n        .string()\n        .describe(\n          'ID of the site visitor who created this reservation.\\n\\nReturned for both logged-in members and anonymous visitors.\\n\\nLearn more about [identities](https://dev.wix.com/docs/api-reference/articles/get-started/about-identities).'\n        )\n        .regex(\n          /^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$/,\n          'Must be a valid GUID'\n        )\n        .optional()\n        .nullable(),\n      tickets: z\n        .array(\n          z.object({\n            ticketLineItemId: z\n              .string()\n              .describe('Ticket line item ID.')\n              .regex(\n                /^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$/,\n                'Must be a valid GUID'\n              )\n              .optional()\n              .nullable(),\n            eventId: z\n              .string()\n              .describe('ID of the event these tickets are for.')\n              .regex(\n                /^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$/,\n                'Must be a valid GUID'\n              )\n              .optional()\n              .nullable(),\n            ticketDefinitionId: z\n              .string()\n              .describe(\n                'ID of the [ticket definition](https://dev.wix.com/docs/api-reference/business-solutions/events/ticket-definitions-v3/introduction) being reserved.'\n              )\n              .regex(\n                /^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$/,\n                'Must be a valid GUID'\n              )\n              .optional()\n              .nullable(),\n            quantity: z\n              .number()\n              .int()\n              .describe('Number of tickets to reserve for this line item.')\n              .min(1)\n              .max(50)\n              .optional()\n              .nullable(),\n            ticketInfo: z\n              .object({\n                seatId: z\n                  .string()\n                  .describe(\n                    'Unique identifier for the assigned seat at the event venue.\\n\\nRequired for events with assigned seating. Each ticket in the line item can have a different seat assignment within the same section or area.'\n                  )\n                  .min(1)\n                  .max(36)\n                  .optional()\n                  .nullable(),\n                seatInfo: z\n                  .object({\n                    sectionLabel: z\n                      .string()\n                      .describe(\n                        'High-level division of the venue, where the place is located, such as `Orchestra`, `Balcony`, or `VIP Section`.'\n                      )\n                      .max(20)\n                      .optional()\n                      .nullable(),\n                    areaLabel: z\n                      .string()\n                      .describe(\n                        'General admission or general seating area label.'\n                      )\n                      .max(50)\n                      .optional()\n                      .nullable(),\n                    tableLabel: z\n                      .string()\n                      .describe('Table label for events with table seating.')\n                      .max(50)\n                      .optional()\n                      .nullable(),\n                    rowLabel: z\n                      .string()\n                      .describe('Row label within a section.')\n                      .max(50)\n                      .optional()\n                      .nullable(),\n                    seatLabel: z\n                      .string()\n                      .describe(\n                        'Individual seat label within a row or at a table.'\n                      )\n                      .max(4)\n                      .optional()\n                      .nullable(),\n                    configurationId: z\n                      .string()\n                      .describe(\n                        'Seating plan ID from the Wix Events & Tickets app.'\n                      )\n                      .regex(\n                        /^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$/,\n                        'Must be a valid GUID'\n                      )\n                      .optional()\n                      .nullable(),\n                  })\n                  .describe(\n                    'Detailed seat location information.\\n\\nIncludes section, row, seat number, and other venue-specific identifiers to help customers locate their assigned seats.'\n                  )\n                  .optional(),\n                guestPrice: z\n                  .string()\n                  .describe(\n                    'The guest enters the ticket price. This pricing method is applied to donation.'\n                  )\n                  .optional()\n                  .nullable(),\n                pricingOptionId: z\n                  .string()\n                  .describe(\n                    'ID of the pricing option selected for this ticket.'\n                  )\n                  .regex(\n                    /^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$/,\n                    'Must be a valid GUID'\n                  )\n                  .optional()\n                  .nullable(),\n                pricingOptionName: z\n                  .string()\n                  .describe('Display name of the selected pricing option.')\n                  .max(200)\n                  .optional()\n                  .nullable(),\n                pricingPlan: z\n                  .object({\n                    orderId: z\n                      .string()\n                      .describe(\n                        'Order ID of the pricing plan purchase.\\n\\nReferences the specific order through which the customer acquired their subscription plan benefits.'\n                      )\n                      .regex(\n                        /^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$/,\n                        'Must be a valid GUID'\n                      )\n                      .optional(),\n                    planId: z\n                      .string()\n                      .describe(\n                        'Unique identifier of the pricing plan.\\n\\nReferences the specific subscription plan that grants pricing benefits or discounts for this ticket reservation.'\n                      )\n                      .regex(\n                        /^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$/,\n                        'Must be a valid GUID'\n                      )\n                      .optional(),\n                  })\n                  .describe(\n                    'Pricing plan benefits applied to this ticket.\\n\\nContains information about subscription plan discounts or benefits that affect the ticket pricing for this customer.'\n                  )\n                  .optional(),\n                priceOverride: z\n                  .string()\n                  .describe(\n                    'Override price that replaces the standard ticket price.\\n\\nUsed for promotional pricing, staff discounts, or other special pricing that differs from the standard ticket definition price.'\n                  )\n                  .optional()\n                  .nullable(),\n              })\n              .describe(\n                'Detailed information about the tickets in this line item.'\n              )\n              .optional(),\n            removedQuantity: z\n              .number()\n              .int()\n              .describe(\n                'Number of tickets that are removed from this line item after manually updating reservation in the dashboard.'\n              )\n              .min(0)\n              .max(50)\n              .optional()\n              .nullable(),\n            policy: z\n              .string()\n              .describe('Terms and conditions that apply to this ticket type.')\n              .min(1)\n              .max(50000)\n              .optional()\n              .nullable(),\n            ticketName: z\n              .string()\n              .describe('Display name of the ticket type for this line item.')\n              .min(1)\n              .max(30)\n              .optional()\n              .nullable(),\n            price: z\n              .object({\n                value: z\n                  .string()\n                  .describe(\n                    'Monetary amount. Decimal string with a period as a decimal separator (for example, 3.99). Optionally, a single (-), to indicate that the amount is negative.'\n                  )\n                  .optional(),\n                currency: z\n                  .string()\n                  .describe(\n                    'Currency code. Must be a valid [ISO 4217](https://www.iso.org/iso-4217-currency-codes.html) currency code (for example, USD).'\n                  )\n                  .optional(),\n              })\n              .describe(\n                'Price per individual ticket in this line item.\\n\\nRepresents the base price for one ticket before any quantity calculations. This price includes any pricing option discounts but excludes service fees.'\n              )\n              .optional(),\n            subTotal: z\n              .object({\n                value: z\n                  .string()\n                  .describe(\n                    'Monetary amount. Decimal string with a period as a decimal separator (for example, 3.99). Optionally, a single (-), to indicate that the amount is negative.'\n                  )\n                  .optional(),\n                currency: z\n                  .string()\n                  .describe(\n                    'Currency code. Must be a valid [ISO 4217](https://www.iso.org/iso-4217-currency-codes.html) currency code (for example, USD).'\n                  )\n                  .optional(),\n              })\n              .describe(\n                'Total price for all tickets in this line item.\\n\\nCalculated as `price` multiplied by `quantity`. This represents the subtotal for this line item before taxes and service fees are applied.'\n              )\n              .optional(),\n          })\n        )\n        .min(1)\n        .max(50)\n        .optional(),\n      additionalReservationSettings: z\n        .object({\n          disableTicketLimitValidation: z\n            .boolean()\n            .describe(\n              'Whether to bypass ticket availability limits when creating the reservation.\\n\\nWhen `true`, allows creating reservations even if tickets appear sold out. Use with caution as this can lead to overselling. Typically used for admin purposes or special circumstances.'\n            )\n            .optional()\n            .nullable(),\n          enableHiddenTicketReservation: z\n            .boolean()\n            .describe(\n              'Whether to allow reservations for tickets marked as hidden.\\n\\nHidden tickets are not displayed in the standard ticket selection on the site. Enable this to allow reservations for hidden tickets through direct API calls.'\n            )\n            .optional()\n            .nullable(),\n        })\n        .describe(\n          'Advanced configuration options that modify default reservation behavior.\\n\\nUse these settings to override standard validation rules, such as availability limits or hidden ticket restrictions.'\n        )\n        .optional(),\n      extendedFields: z\n        .object({\n          namespaces: z\n            .record(z.string(), z.record(z.string(), z.any()))\n            .describe(\n              'Extended field data. Each key corresponds to the namespace of the app that created the extended fields.\\nThe value of each key is structured according to the schema defined when the extended fields were configured.\\n\\nYou can only access fields for which you have the appropriate permissions.\\n\\nLearn more about [extended fields](https://dev.wix.com/docs/rest/articles/getting-started/extended-fields).'\n            )\n            .optional(),\n        })\n        .describe(\n          'Extended fields allow you to add custom properties beyond the standard reservation data.\\n\\nLearn more about [extended fields](https://dev.wix.com/docs/build-apps/develop-your-app/extensions/backend-extensions/schema-plugins/about-schema-plugin-extensions).'\n        )\n        .optional(),\n      tags: z\n        .object({\n          privateTags: z\n            .object({ tagIds: z.array(z.string()).max(100).optional() })\n            .describe(\n              'Tags that require an additional permission in order to access them, normally not given to site members or visitors.'\n            )\n            .optional(),\n          tags: z\n            .object({ tagIds: z.array(z.string()).max(100).optional() })\n            .describe(\n              'Tags that are exposed to anyone who has access to the labeled entity itself, including site members and visitors.'\n            )\n            .optional(),\n        })\n        .describe(\n          'Tags allow you to classify ticket reservations.\\n\\nLearn more about [tags](https://dev.wix.com/docs/rest/business-management/tags/introduction).'\n        )\n        .optional(),\n    })\n    .describe('Deleted ticket reservation.')\n    .optional(),\n});\nexport const BulkUpdateTicketReservationTagsRequest = z.object({\n  ids: z.array(z.string()).min(1).max(100),\n  options: z.object({\n    assignTags: z\n      .object({\n        privateTags: z\n          .object({ tagIds: z.array(z.string()).max(100).optional() })\n          .describe(\n            'Tags that require an additional permission in order to access them, normally not given to site members or visitors.'\n          )\n          .optional(),\n        tags: z\n          .object({ tagIds: z.array(z.string()).max(100).optional() })\n          .describe(\n            'Tags that are exposed to anyone who has access to the labeled entity itself, including site members and visitors.'\n          )\n          .optional(),\n      })\n      .describe('Tags to add to the specified reservations.'),\n    unassignTags: z\n      .object({\n        privateTags: z\n          .object({ tagIds: z.array(z.string()).max(100).optional() })\n          .describe(\n            'Tags that require an additional permission in order to access them, normally not given to site members or visitors.'\n          )\n          .optional(),\n        tags: z\n          .object({ tagIds: z.array(z.string()).max(100).optional() })\n          .describe(\n            'Tags that are exposed to anyone who has access to the labeled entity itself, including site members and visitors.'\n          )\n          .optional(),\n      })\n      .describe('Tags to remove from the specified reservations.')\n      .optional(),\n  }),\n});\nexport const BulkUpdateTicketReservationTagsResponse = z.object({\n  results: z\n    .array(\n      z.object({\n        itemMetadata: z\n          .object({\n            _id: z\n              .string()\n              .describe(\n                \"Item ID. Should always be available, unless it's impossible (for example, when failing to create an item).\"\n              )\n              .regex(\n                /^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$/,\n                'Must be a valid GUID'\n              )\n              .optional()\n              .nullable(),\n            originalIndex: z\n              .number()\n              .int()\n              .describe(\n                'Index of the item within the request array. Allows for correlation between request and response items.'\n              )\n              .optional(),\n            success: z\n              .boolean()\n              .describe(\n                'Whether the requested action was successful for this item. When `false`, the `error` field is populated.'\n              )\n              .optional(),\n            error: z\n              .object({\n                code: z.string().describe('Error code.').optional(),\n                description: z\n                  .string()\n                  .describe('Description of the error.')\n                  .optional(),\n                data: z\n                  .record(z.string(), z.any())\n                  .describe('Data related to the error.')\n                  .optional()\n                  .nullable(),\n              })\n              .describe('Details about the error in case of failure.')\n              .optional(),\n          })\n          .describe('Metadata for the individual reservation update operation.')\n          .optional(),\n      })\n    )\n    .min(1)\n    .max(100)\n    .optional(),\n  bulkActionMetadata: z\n    .object({\n      totalSuccesses: z\n        .number()\n        .int()\n        .describe('Number of items that were successfully processed.')\n        .optional(),\n      totalFailures: z\n        .number()\n        .int()\n        .describe(\"Number of items that couldn't be processed.\")\n        .optional(),\n      undetailedFailures: z\n        .number()\n        .int()\n        .describe(\n          'Number of failures without details because detailed failure threshold was exceeded.'\n        )\n        .optional(),\n    })\n    .describe('Metadata about the bulk update operation.')\n    .optional(),\n});\nexport const BulkUpdateTicketReservationTagsByFilterRequest = z.object({\n  filter: z\n    .record(z.string(), z.any())\n    .describe('Filter criteria to select reservations for tag updates.'),\n  options: z.object({\n    assignTags: z\n      .object({\n        privateTags: z\n          .object({ tagIds: z.array(z.string()).max(100).optional() })\n          .describe(\n            'Tags that require an additional permission in order to access them, normally not given to site members or visitors.'\n          )\n          .optional(),\n        tags: z\n          .object({ tagIds: z.array(z.string()).max(100).optional() })\n          .describe(\n            'Tags that are exposed to anyone who has access to the labeled entity itself, including site members and visitors.'\n          )\n          .optional(),\n      })\n      .describe('Tags to add to matching reservations.'),\n    unassignTags: z\n      .object({\n        privateTags: z\n          .object({ tagIds: z.array(z.string()).max(100).optional() })\n          .describe(\n            'Tags that require an additional permission in order to access them, normally not given to site members or visitors.'\n          )\n          .optional(),\n        tags: z\n          .object({ tagIds: z.array(z.string()).max(100).optional() })\n          .describe(\n            'Tags that are exposed to anyone who has access to the labeled entity itself, including site members and visitors.'\n          )\n          .optional(),\n      })\n      .describe('Tags to remove from matching reservations.')\n      .optional(),\n  }),\n});\nexport const BulkUpdateTicketReservationTagsByFilterResponse = z.object({\n  jobId: z\n    .string()\n    .describe(\n      'Job ID for tracking the asynchronous operation.\\n\\nUse this ID to monitor the progress and status of the bulk tag update operation.\\nThe operation runs in the background and may take time to complete for large datasets.'\n    )\n    .regex(\n      /^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$/,\n      'Must be a valid GUID'\n    )\n    .optional(),\n});\nexport const CancelTicketReservationRequest = z.object({\n  ticketReservationId: z\n    .string()\n    .describe('ID of the ticket reservation to cancel.')\n    .regex(\n      /^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$/,\n      'Must be a valid GUID'\n    ),\n});\nexport const CancelTicketReservationResponse = z.object({\n  ticketReservation: z\n    .object({\n      _id: z\n        .string()\n        .describe('Ticket reservation ID.')\n        .regex(\n          /^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$/,\n          'Must be a valid GUID'\n        )\n        .optional()\n        .nullable(),\n      revision: z\n        .string()\n        .regex(/^-?\\d+$/, 'Must be a valid Int64 string')\n        .describe(\n          'Revision number, which increments by 1 each time the ticket reservation is updated. To prevent conflicting changes, the current revision must be passed when updating the ticket reservation.'\n        )\n        .optional()\n        .nullable(),\n      _createdDate: z\n        .date()\n        .describe('Date and time the ticket reservation was created.')\n        .optional()\n        .nullable(),\n      _updatedDate: z\n        .date()\n        .describe('Date and time the ticket reservation was updated.')\n        .optional()\n        .nullable(),\n      expirationDate: z\n        .date()\n        .describe(\n          \"Date and time when a `PENDING` ticket reservation will automatically expire if not confirmed.\\n\\nWhen a reservation expires, tickets are released back to the available inventory.\\nExpiration time is calculated based on the event's reservation duration settings. To set the reservation duration, call [Create Event](https://dev.wix.com/docs/api-reference/business-solutions/events/events-v3/create-event) API.\\n\\n**Note:** This field only applies to `PENDING` reservations.\"\n        )\n        .optional()\n        .nullable(),\n      status: z\n        .enum([\n          'PENDING',\n          'CONFIRMED',\n          'CANCELED',\n          'CANCELED_MANUALLY',\n          'EXPIRED',\n        ])\n        .describe('Reservation status.')\n        .optional(),\n      memberId: z\n        .string()\n        .describe(\n          'ID of the site member who created this reservation.\\n\\nOnly returned when the reservation was created by a logged-in site member.\\n\\nLearn more about [identities](https://dev.wix.com/docs/api-reference/articles/get-started/about-identities).'\n        )\n        .regex(\n          /^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$/,\n          'Must be a valid GUID'\n        )\n        .optional()\n        .nullable(),\n      visitorId: z\n        .string()\n        .describe(\n          'ID of the site visitor who created this reservation.\\n\\nReturned for both logged-in members and anonymous visitors.\\n\\nLearn more about [identities](https://dev.wix.com/docs/api-reference/articles/get-started/about-identities).'\n        )\n        .regex(\n          /^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$/,\n          'Must be a valid GUID'\n        )\n        .optional()\n        .nullable(),\n      tickets: z\n        .array(\n          z.object({\n            ticketLineItemId: z\n              .string()\n              .describe('Ticket line item ID.')\n              .regex(\n                /^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$/,\n                'Must be a valid GUID'\n              )\n              .optional()\n              .nullable(),\n            eventId: z\n              .string()\n              .describe('ID of the event these tickets are for.')\n              .regex(\n                /^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$/,\n                'Must be a valid GUID'\n              )\n              .optional()\n              .nullable(),\n            ticketDefinitionId: z\n              .string()\n              .describe(\n                'ID of the [ticket definition](https://dev.wix.com/docs/api-reference/business-solutions/events/ticket-definitions-v3/introduction) being reserved.'\n              )\n              .regex(\n                /^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$/,\n                'Must be a valid GUID'\n              )\n              .optional()\n              .nullable(),\n            quantity: z\n              .number()\n              .int()\n              .describe('Number of tickets to reserve for this line item.')\n              .min(1)\n              .max(50)\n              .optional()\n              .nullable(),\n            ticketInfo: z\n              .object({\n                seatId: z\n                  .string()\n                  .describe(\n                    'Unique identifier for the assigned seat at the event venue.\\n\\nRequired for events with assigned seating. Each ticket in the line item can have a different seat assignment within the same section or area.'\n                  )\n                  .min(1)\n                  .max(36)\n                  .optional()\n                  .nullable(),\n                seatInfo: z\n                  .object({\n                    sectionLabel: z\n                      .string()\n                      .describe(\n                        'High-level division of the venue, where the place is located, such as `Orchestra`, `Balcony`, or `VIP Section`.'\n                      )\n                      .max(20)\n                      .optional()\n                      .nullable(),\n                    areaLabel: z\n                      .string()\n                      .describe(\n                        'General admission or general seating area label.'\n                      )\n                      .max(50)\n                      .optional()\n                      .nullable(),\n                    tableLabel: z\n                      .string()\n                      .describe('Table label for events with table seating.')\n                      .max(50)\n                      .optional()\n                      .nullable(),\n                    rowLabel: z\n                      .string()\n                      .describe('Row label within a section.')\n                      .max(50)\n                      .optional()\n                      .nullable(),\n                    seatLabel: z\n                      .string()\n                      .describe(\n                        'Individual seat label within a row or at a table.'\n                      )\n                      .max(4)\n                      .optional()\n                      .nullable(),\n                    configurationId: z\n                      .string()\n                      .describe(\n                        'Seating plan ID from the Wix Events & Tickets app.'\n                      )\n                      .regex(\n                        /^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$/,\n                        'Must be a valid GUID'\n                      )\n                      .optional()\n                      .nullable(),\n                  })\n                  .describe(\n                    'Detailed seat location information.\\n\\nIncludes section, row, seat number, and other venue-specific identifiers to help customers locate their assigned seats.'\n                  )\n                  .optional(),\n                guestPrice: z\n                  .string()\n                  .describe(\n                    'The guest enters the ticket price. This pricing method is applied to donation.'\n                  )\n                  .optional()\n                  .nullable(),\n                pricingOptionId: z\n                  .string()\n                  .describe(\n                    'ID of the pricing option selected for this ticket.'\n                  )\n                  .regex(\n                    /^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$/,\n                    'Must be a valid GUID'\n                  )\n                  .optional()\n                  .nullable(),\n                pricingOptionName: z\n                  .string()\n                  .describe('Display name of the selected pricing option.')\n                  .max(200)\n                  .optional()\n                  .nullable(),\n                pricingPlan: z\n                  .object({\n                    orderId: z\n                      .string()\n                      .describe(\n                        'Order ID of the pricing plan purchase.\\n\\nReferences the specific order through which the customer acquired their subscription plan benefits.'\n                      )\n                      .regex(\n                        /^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$/,\n                        'Must be a valid GUID'\n                      )\n                      .optional(),\n                    planId: z\n                      .string()\n                      .describe(\n                        'Unique identifier of the pricing plan.\\n\\nReferences the specific subscription plan that grants pricing benefits or discounts for this ticket reservation.'\n                      )\n                      .regex(\n                        /^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$/,\n                        'Must be a valid GUID'\n                      )\n                      .optional(),\n                  })\n                  .describe(\n                    'Pricing plan benefits applied to this ticket.\\n\\nContains information about subscription plan discounts or benefits that affect the ticket pricing for this customer.'\n                  )\n                  .optional(),\n                priceOverride: z\n                  .string()\n                  .describe(\n                    'Override price that replaces the standard ticket price.\\n\\nUsed for promotional pricing, staff discounts, or other special pricing that differs from the standard ticket definition price.'\n                  )\n                  .optional()\n                  .nullable(),\n              })\n              .describe(\n                'Detailed information about the tickets in this line item.'\n              )\n              .optional(),\n            removedQuantity: z\n              .number()\n              .int()\n              .describe(\n                'Number of tickets that are removed from this line item after manually updating reservation in the dashboard.'\n              )\n              .min(0)\n              .max(50)\n              .optional()\n              .nullable(),\n            policy: z\n              .string()\n              .describe('Terms and conditions that apply to this ticket type.')\n              .min(1)\n              .max(50000)\n              .optional()\n              .nullable(),\n            ticketName: z\n              .string()\n              .describe('Display name of the ticket type for this line item.')\n              .min(1)\n              .max(30)\n              .optional()\n              .nullable(),\n            price: z\n              .object({\n                value: z\n                  .string()\n                  .describe(\n                    'Monetary amount. Decimal string with a period as a decimal separator (for example, 3.99). Optionally, a single (-), to indicate that the amount is negative.'\n                  )\n                  .optional(),\n                currency: z\n                  .string()\n                  .describe(\n                    'Currency code. Must be a valid [ISO 4217](https://www.iso.org/iso-4217-currency-codes.html) currency code (for example, USD).'\n                  )\n                  .optional(),\n              })\n              .describe(\n                'Price per individual ticket in this line item.\\n\\nRepresents the base price for one ticket before any quantity calculations. This price includes any pricing option discounts but excludes service fees.'\n              )\n              .optional(),\n            subTotal: z\n              .object({\n                value: z\n                  .string()\n                  .describe(\n                    'Monetary amount. Decimal string with a period as a decimal separator (for example, 3.99). Optionally, a single (-), to indicate that the amount is negative.'\n                  )\n                  .optional(),\n                currency: z\n                  .string()\n                  .describe(\n                    'Currency code. Must be a valid [ISO 4217](https://www.iso.org/iso-4217-currency-codes.html) currency code (for example, USD).'\n                  )\n                  .optional(),\n              })\n              .describe(\n                'Total price for all tickets in this line item.\\n\\nCalculated as `price` multiplied by `quantity`. This represents the subtotal for this line item before taxes and service fees are applied.'\n              )\n              .optional(),\n          })\n        )\n        .min(1)\n        .max(50)\n        .optional(),\n      additionalReservationSettings: z\n        .object({\n          disableTicketLimitValidation: z\n            .boolean()\n            .describe(\n              'Whether to bypass ticket availability limits when creating the reservation.\\n\\nWhen `true`, allows creating reservations even if tickets appear sold out. Use with caution as this can lead to overselling. Typically used for admin purposes or special circumstances.'\n            )\n            .optional()\n            .nullable(),\n          enableHiddenTicketReservation: z\n            .boolean()\n            .describe(\n              'Whether to allow reservations for tickets marked as hidden.\\n\\nHidden tickets are not displayed in the standard ticket selection on the site. Enable this to allow reservations for hidden tickets through direct API calls.'\n            )\n            .optional()\n            .nullable(),\n        })\n        .describe(\n          'Advanced configuration options that modify default reservation behavior.\\n\\nUse these settings to override standard validation rules, such as availability limits or hidden ticket restrictions.'\n        )\n        .optional(),\n      extendedFields: z\n        .object({\n          namespaces: z\n            .record(z.string(), z.record(z.string(), z.any()))\n            .describe(\n              'Extended field data. Each key corresponds to the namespace of the app that created the extended fields.\\nThe value of each key is structured according to the schema defined when the extended fields were configured.\\n\\nYou can only access fields for which you have the appropriate permissions.\\n\\nLearn more about [extended fields](https://dev.wix.com/docs/rest/articles/getting-started/extended-fields).'\n            )\n            .optional(),\n        })\n        .describe(\n          'Extended fields allow you to add custom properties beyond the standard reservation data.\\n\\nLearn more about [extended fields](https://dev.wix.com/docs/build-apps/develop-your-app/extensions/backend-extensions/schema-plugins/about-schema-plugin-extensions).'\n        )\n        .optional(),\n      tags: z\n        .object({\n          privateTags: z\n            .object({ tagIds: z.array(z.string()).max(100).optional() })\n            .describe(\n              'Tags that require an additional permission in order to access them, normally not given to site members or visitors.'\n            )\n            .optional(),\n          tags: z\n            .object({ tagIds: z.array(z.string()).max(100).optional() })\n            .describe(\n              'Tags that are exposed to anyone who has access to the labeled entity itself, including site members and visitors.'\n            )\n            .optional(),\n        })\n        .describe(\n          'Tags allow you to classify ticket reservations.\\n\\nLearn more about [tags](https://dev.wix.com/docs/rest/business-management/tags/introduction).'\n        )\n        .optional(),\n    })\n    .describe('The canceled ticket reservation.')\n    .optional(),\n});\n"],"mappings":"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","names":[]}