@wix/auto_sdk_events_ticket-definitions-v-2 1.0.55 → 1.0.56
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/build/cjs/index.d.ts +1 -1
- package/build/cjs/index.js +0 -10
- package/build/cjs/index.js.map +1 -1
- package/build/cjs/index.typings.d.ts +1 -105
- package/build/cjs/index.typings.js +0 -10
- package/build/cjs/index.typings.js.map +1 -1
- package/build/es/index.d.mts +1 -1
- package/build/es/index.mjs +0 -9
- package/build/es/index.mjs.map +1 -1
- package/build/es/index.typings.d.mts +1 -105
- package/build/es/index.typings.mjs +0 -9
- package/build/es/index.typings.mjs.map +1 -1
- package/build/internal/cjs/index.d.ts +1 -1
- package/build/internal/cjs/index.js +0 -10
- package/build/internal/cjs/index.js.map +1 -1
- package/build/internal/cjs/index.typings.d.ts +1 -105
- package/build/internal/cjs/index.typings.js +0 -10
- package/build/internal/cjs/index.typings.js.map +1 -1
- package/build/internal/es/index.d.mts +1 -1
- package/build/internal/es/index.mjs +0 -9
- package/build/internal/es/index.mjs.map +1 -1
- package/build/internal/es/index.typings.d.mts +1 -105
- package/build/internal/es/index.typings.mjs +0 -9
- package/build/internal/es/index.typings.mjs.map +1 -1
- package/package.json +2 -2
|
@@ -4700,110 +4700,6 @@ interface EventTicketingSummary {
|
|
|
4700
4700
|
*/
|
|
4701
4701
|
highestTicketPriceFormatted?: string | null;
|
|
4702
4702
|
}
|
|
4703
|
-
/** Triggered when a reservation is created. */
|
|
4704
|
-
interface ReservationCreated {
|
|
4705
|
-
/** Date and time the reservation was created. */
|
|
4706
|
-
timestamp?: Date | null;
|
|
4707
|
-
/**
|
|
4708
|
-
* Event ID to which the reservation belongs.
|
|
4709
|
-
* @format GUID
|
|
4710
|
-
*/
|
|
4711
|
-
eventId?: string;
|
|
4712
|
-
/**
|
|
4713
|
-
* Reservation ID.
|
|
4714
|
-
* Can be used to retrieve a reservation invoice.
|
|
4715
|
-
* @format GUID
|
|
4716
|
-
*/
|
|
4717
|
-
reservationId?: string;
|
|
4718
|
-
/** Date and time the reservation expires. */
|
|
4719
|
-
expires?: Date | null;
|
|
4720
|
-
/** Reservation status. */
|
|
4721
|
-
status?: ReservationStatusWithLiterals;
|
|
4722
|
-
/**
|
|
4723
|
-
* Amount of tickets in the reservation.
|
|
4724
|
-
* @maxSize 50
|
|
4725
|
-
*/
|
|
4726
|
-
quantities?: TicketQuantity[];
|
|
4727
|
-
/** Date and time the reservation was updated. */
|
|
4728
|
-
_updatedDate?: Date | null;
|
|
4729
|
-
/**
|
|
4730
|
-
* Number of reservations.
|
|
4731
|
-
* @maxSize 50
|
|
4732
|
-
*/
|
|
4733
|
-
counts?: ReservationCount[];
|
|
4734
|
-
}
|
|
4735
|
-
declare enum ReservationStatus {
|
|
4736
|
-
/** The reservation is pending confirmation. It will expire after a certain amount of time. */
|
|
4737
|
-
RESERVATION_PENDING = "RESERVATION_PENDING",
|
|
4738
|
-
/** The reservation is confirmed and won't expire. */
|
|
4739
|
-
RESERVATION_CONFIRMED = "RESERVATION_CONFIRMED",
|
|
4740
|
-
/** The reservation is canceled because it's not paid. */
|
|
4741
|
-
RESERVATION_CANCELED = "RESERVATION_CANCELED",
|
|
4742
|
-
/** The reservation is canceled manually by the buyer. */
|
|
4743
|
-
RESERVATION_CANCELED_MANUALLY = "RESERVATION_CANCELED_MANUALLY",
|
|
4744
|
-
/** The reservation has expired. */
|
|
4745
|
-
RESERVATION_EXPIRED = "RESERVATION_EXPIRED"
|
|
4746
|
-
}
|
|
4747
|
-
/** @enumType */
|
|
4748
|
-
type ReservationStatusWithLiterals = ReservationStatus | 'RESERVATION_PENDING' | 'RESERVATION_CONFIRMED' | 'RESERVATION_CANCELED' | 'RESERVATION_CANCELED_MANUALLY' | 'RESERVATION_EXPIRED';
|
|
4749
|
-
interface TicketQuantity {
|
|
4750
|
-
/**
|
|
4751
|
-
* Ticket definition ID.
|
|
4752
|
-
* @format GUID
|
|
4753
|
-
*/
|
|
4754
|
-
ticketDefinitionId?: string | null;
|
|
4755
|
-
/** Quantity. */
|
|
4756
|
-
quantity?: number | null;
|
|
4757
|
-
/** Quantity update timestamp. */
|
|
4758
|
-
_updatedDate?: Date | null;
|
|
4759
|
-
}
|
|
4760
|
-
interface ReservationCount {
|
|
4761
|
-
/** Reservation Count snapshot timestamp. */
|
|
4762
|
-
timestamp?: Date | null;
|
|
4763
|
-
/**
|
|
4764
|
-
* Ticket Definition ID.
|
|
4765
|
-
* @format GUID
|
|
4766
|
-
*/
|
|
4767
|
-
ticketDefinitionId?: string;
|
|
4768
|
-
/** Confirmed reservation count. */
|
|
4769
|
-
confirmedCount?: number;
|
|
4770
|
-
/** Pending reservation count. */
|
|
4771
|
-
pendingCount?: number;
|
|
4772
|
-
/** True if paid ticket reservation exist. */
|
|
4773
|
-
paidExists?: boolean;
|
|
4774
|
-
}
|
|
4775
|
-
/** Triggered when a reservation is updated. */
|
|
4776
|
-
interface ReservationUpdated {
|
|
4777
|
-
/** Date and time the reservation was updated. */
|
|
4778
|
-
timestamp?: Date | null;
|
|
4779
|
-
/**
|
|
4780
|
-
* Event ID to which the reservation belongs.
|
|
4781
|
-
* @format GUID
|
|
4782
|
-
*/
|
|
4783
|
-
eventId?: string;
|
|
4784
|
-
/**
|
|
4785
|
-
* Reservation ID.
|
|
4786
|
-
* Can be used to retrieve a reservation invoice.
|
|
4787
|
-
* @format GUID
|
|
4788
|
-
*/
|
|
4789
|
-
reservationId?: string;
|
|
4790
|
-
/** Reservation status. */
|
|
4791
|
-
status?: ReservationStatusWithLiterals;
|
|
4792
|
-
/** Date and time the reservation expires. */
|
|
4793
|
-
expires?: Date | null;
|
|
4794
|
-
/**
|
|
4795
|
-
* Amount of tickets in the reservation.
|
|
4796
|
-
* @maxSize 50
|
|
4797
|
-
*/
|
|
4798
|
-
quantities?: TicketQuantity[];
|
|
4799
|
-
/** Date and time the reservation was updated. */
|
|
4800
|
-
_updatedDate?: Date | null;
|
|
4801
|
-
/**
|
|
4802
|
-
* Number of reservations.
|
|
4803
|
-
* @maxSize 50
|
|
4804
|
-
*/
|
|
4805
|
-
counts?: ReservationCount[];
|
|
4806
|
-
}
|
|
4807
4703
|
interface UpdateEventTicketingSummaryRequest {
|
|
4808
4704
|
/**
|
|
4809
4705
|
* Event ID.
|
|
@@ -5411,4 +5307,4 @@ interface ChangeCurrencyOptions {
|
|
|
5411
5307
|
currency: string;
|
|
5412
5308
|
}
|
|
5413
5309
|
|
|
5414
|
-
export { type ActionEvent, type Address, type AddressLocation, type AddressStreetOneOf, type Agenda, Alignment, type AlignmentWithLiterals, type AnchorData, type App, type AppEmbedData, type AppEmbedDataAppDataOneOf, AppType, type AppTypeWithLiterals, AspectRatio, type AspectRatioWithLiterals, type Asset, type AudioData, type Background, type BackgroundBackgroundOneOf, BackgroundType, type BackgroundTypeWithLiterals, type Badge, type BaseEventMetadata, type BlockquoteData, type BookingData, type Border, type BorderColors, type BulkCopyTicketDefinitionsByEventIdRequest, type BulkCopyTicketDefinitionsByEventIdResponse, type BulkDeleteTicketDefinitionsByFilterRequest, type BulkDeleteTicketDefinitionsByFilterResponse, type BulletedListData, type ButtonData, ButtonDataType, type ButtonDataTypeWithLiterals, type ButtonStyles, type CalendarLinks, type CaptionData, type CardStyles, CardStylesType, type CardStylesTypeWithLiterals, type Category, type CategoryCounts, type CategoryDetails, CategoryStateState, type CategoryStateStateWithLiterals, type CellStyle, type ChangeCurrencyApplicationErrors, type ChangeCurrencyOptions, type ChangeCurrencyRequest, type ChangeCurrencyResponse, type CheckoutFormMessages, CheckoutType, type CheckoutTypeWithLiterals, type CodeBlockData, type CollapsibleListData, type ColorData, type Colors, type CommonAddress, type CommonAddressLocation, type CommonAddressStreetOneOf, type CommonMoney, type CommonStreetAddress, type CommonSubdivision, ConferenceType, type ConferenceTypeWithLiterals, type CopiedTicketDefinition, type CountAvailableTicketDefinitionsApplicationErrors, type CountAvailableTicketDefinitionsOptions, type CountAvailableTicketDefinitionsRequest, type CountAvailableTicketDefinitionsResponse, type CountTicketDefinitionsApplicationErrors, type CountTicketDefinitionsOptions, type CountTicketDefinitionsRequest, type CountTicketDefinitionsResponse, type CreateTicketDefinitionApplicationErrors, type CreateTicketDefinitionOptions, type CreateTicketDefinitionRequest, type CreateTicketDefinitionResponse, Crop, type CropWithLiterals, type CursorPaging, type Cursors, type CustomTag, type Dashboard, type DateAndTimeSettings, type Decoration, type DecorationDataOneOf, DecorationType, type DecorationTypeWithLiterals, type DeleteContext, DeleteStatus, type DeleteStatusWithLiterals, type DeleteTicketDefinitionRequest, type DeleteTicketDefinitionResponse, type Design, type Dimensions, Direction, type DirectionWithLiterals, type DividerData, DividerDataAlignment, type DividerDataAlignmentWithLiterals, type DocumentStyle, type DomainEvent, type DomainEventBodyOneOf, type EmbedData, type Empty, type EntityCreatedEvent, type EntityDeletedEvent, type EntityUpdatedEvent, type Event, type EventCanceled, type EventCreated, type EventData, type EventDeleted, type EventDetails, type EventDisplaySettings, type EventEnded, type EventMetadata, EventStatus, type EventStatusWithLiterals, type EventTicketingSummary, EventType, type EventTypeWithLiterals, type EventUpdated, type EventsLocation, type EventsOccurrence, EventsRecurrenceStatusStatus, type EventsRecurrenceStatusStatusWithLiterals, type EventsRecurrences, type ExtendedFields, type ExternalEvent, type FacetCounts, FeeTypeEnumType, type FeeTypeEnumTypeWithLiterals, type Feed, Field, type FieldWithLiterals, type File, type FileData, type FileSource, type FileSourceDataOneOf, type FontSizeData, FontType, type FontTypeWithLiterals, type Form, type FormMessages, type Formatted, type GIF, type GIFData, GIFType, type GIFTypeWithLiterals, type GalleryData, type GalleryOptions, type GalleryOptionsLayout, type GetTicketDefinitionFromTrashBinRequest, type GetTicketDefinitionFromTrashBinResponse, type GetTicketDefinitionOptions, type GetTicketDefinitionRequest, type GetTicketDefinitionResponse, type GetTicketDefinitionSummaryRequest, type GetTicketDefinitionSummaryResponse, type Gradient, type GuestListConfig, type HTMLData, type HTMLDataDataOneOf, type HeadingData, type Height, type IdentificationData, type IdentificationDataIdOneOf, type Image, type ImageData, type ImageDataStyles, type ImageStyles, InitialExpandedItems, type InitialExpandedItemsWithLiterals, type Input, type InputControl, InputControlType, type InputControlTypeWithLiterals, type InvalidateCache, type InvalidateCacheGetByOneOf, type Item, type ItemDataOneOf, type ItemStyle, type Keyword, type Label, type LabellingSettings, Layout, type LayoutCellData, LayoutType, type LayoutTypeWithLiterals, type LayoutWithLiterals, LineStyle, type LineStyleWithLiterals, type Link, type LinkData, type LinkDataOneOf, type LinkPreviewData, type LinkPreviewDataStyles, type ListEventTicketingSummaryRequest, type ListEventTicketingSummaryResponse, type ListValue, type Location, LocationLocationType, type LocationLocationTypeWithLiterals, LocationType, type LocationTypeWithLiterals, type MapCoordinates, type MapData, type MapSettings, MapType, type MapTypeWithLiterals, type Media, type MentionData, type MessageEnvelope, type MetaSiteSpecialEvent, type MetaSiteSpecialEventPayloadOneOf, type Metadata, type Money, Namespace, type NamespaceChanged, type NamespaceWithLiterals, type Negative, type NegativeResponseConfirmation, type Node, type NodeDataOneOf, type NodeStyle, NodeType, type NodeTypeWithLiterals, NullValue, type NullValueWithLiterals, type Occurrence, type OdeditorAssigned, type OdeditorUnassigned, type Oembed, type OnlineConferencing, type OnlineConferencingConfig, type OnlineConferencingSession, type Option, type OptionDesign, type OptionDetails, type OptionLayout, type OptionSelection, type OptionSelectionSelectedOptionOneOf, type OrderedListData, Orientation, type OrientationWithLiterals, type PDFSettings, type Page, type Paging, type PagingMetadataV2, type ParagraphData, type Permissions, type PicassoAssigned, type PicassoUnassigned, Placement, type PlacementWithLiterals, type PlaybackOptions, type PluginContainerData, PluginContainerDataAlignment, type PluginContainerDataAlignmentWithLiterals, type PluginContainerDataWidth, type PluginContainerDataWidthDataOneOf, type Poll, type PollData, type PollDataLayout, type PollDesign, type PollLayout, PollLayoutDirection, type PollLayoutDirectionWithLiterals, PollLayoutType, type PollLayoutTypeWithLiterals, type PollSettings, Position, type PositionWithLiterals, type Positive, type PositiveResponseConfirmation, type PricingData, type PricingMethod, type PricingMethodPriceOneOf, type PricingOptions, PricingTypeEnumType, type PricingTypeEnumTypeWithLiterals, type QueryAvailableTicketDefinitionsOptions, type QueryAvailableTicketDefinitionsRequest, type QueryAvailableTicketDefinitionsResponse, type QueryTicketDefinitionsOptions, type QueryTicketDefinitionsRequest, type QueryTicketDefinitionsResponse, type QueryV2, type QueryV2PagingMethodOneOf, RecurrenceStatusStatus, type RecurrenceStatusStatusWithLiterals, type Recurrences, type Registration, type RegistrationClosedMessages, RegistrationStatus, type RegistrationStatusWithLiterals, type Rel, type ReorderTicketDefinitionsApplicationErrors, type ReorderTicketDefinitionsOptions, type ReorderTicketDefinitionsOptionsReferenceDefinitionOneOf, type ReorderTicketDefinitionsRequest, type ReorderTicketDefinitionsRequestReferenceDefinitionOneOf, type ReorderTicketDefinitionsResponse, type ReservationCount, type ReservationCreated, ReservationStatus, type ReservationStatusWithLiterals, type ReservationUpdated, Resizing, type ResizingWithLiterals, type ResponseConfirmation, type RestoreInfo, type RibbonStyles, type RichContent, type RsvpCollection, type RsvpCollectionConfig, type RsvpConfirmationMessages, type RsvpConfirmationMessagesNegativeResponseConfirmation, type RsvpConfirmationMessagesPositiveResponseConfirmation, type RsvpFormMessages, RsvpStatusOptions, type RsvpStatusOptionsWithLiterals, type RsvpSummary, type SalePeriod, type SalePeriodUpdated, SaleStatusEnumStatus, type SaleStatusEnumStatusWithLiterals, type SalesDetails, type ScheduleConfig, type ScheduleLegacyTimeCapsuleTaskRequest, type Scheduling, type SeatingPlanCategoriesSummaryUpdated, type SeoSchema, type SeoSettings, type ServiceProvisioned, type ServiceRemoved, type Settings, type SiteCreated, SiteCreatedContext, type SiteCreatedContextWithLiterals, type SiteDeleted, type SiteHardDeleted, type SiteMarkedAsTemplate, type SiteMarkedAsWixSite, type SitePublished, type SitePurgedExternally, type SiteRenamed, type SiteTransferred, type SiteUndeleted, type SiteUnpublished, type SiteUrl, type SiteUrlChanged, SortOrder, type SortOrderWithLiterals, type Sorting, Source, type SourceWithLiterals, type Spoiler, type SpoilerData, State, type StateWithLiterals, Status, type StatusWithLiterals, type StreetAddress, type StudioAssigned, type StudioUnassigned, type Styles, type StylesBorder, StylesPosition, type StylesPositionWithLiterals, type Subdivision, SubdivisionSubdivisionType, type SubdivisionSubdivisionTypeWithLiterals, SubdivisionType, type SubdivisionTypeWithLiterals, type TableCellData, type TableData, type Tag, Target, type TargetWithLiterals, type TaxConfig, TaxType, type TaxTypeWithLiterals, TextAlignment, type TextAlignmentWithLiterals, type TextData, type TextNodeStyle, type TextStyle, type Thumbnails, ThumbnailsAlignment, type ThumbnailsAlignmentWithLiterals, type TicketDefinition, type TicketDefinitionCreatedEnvelope, type TicketDefinitionDeletedEnvelope, type TicketDefinitionSaleEnded, type TicketDefinitionSaleEndedEnvelope, type TicketDefinitionSalePeriodUpdatedEnvelope, type TicketDefinitionSaleStarted, type TicketDefinitionSaleStartedEnvelope, type TicketDefinitionSummary, type TicketDefinitionUpdatedEnvelope, type TicketDefinitionsQueryBuilder, type TicketDefinitionsQueryResult, type TicketQuantity, type Ticketing, type TicketingConfig, type TicketingSummary, type TicketsConfirmationMessages, type TicketsUnavailableMessages, Type, type TypeWithLiterals, type URI, type UpdateEventTicketingSummaryRequest, type UpdateEventTicketingSummaryResponse, type UpdateFeeTypesBasedOnSettingsRequest, type UpdateFeeTypesBasedOnSettingsResponse, type UpdateTicketDefinition, type UpdateTicketDefinitionApplicationErrors, type UpdateTicketDefinitionOptions, type UpdateTicketDefinitionRequest, type UpdateTicketDefinitionResponse, type UpdateTicketDefinitionSortIndexRequest, type UpdateTicketDefinitionSortIndexResponse, ValueType, type ValueTypeWithLiterals, VerticalAlignment, type VerticalAlignmentWithLiterals, type Video, type VideoData, ViewMode, type ViewModeWithLiterals, ViewRole, type ViewRoleWithLiterals, VisitorType, type VisitorTypeWithLiterals, VoteRole, type VoteRoleWithLiterals, WebhookIdentityType, type WebhookIdentityTypeWithLiterals, Width, WidthType, type WidthTypeWithLiterals, type WidthWithLiterals, bulkDeleteTicketDefinitionsByFilter, changeCurrency, countAvailableTicketDefinitions, countTicketDefinitions, createTicketDefinition, deleteTicketDefinition, getTicketDefinition, onTicketDefinitionCreated, onTicketDefinitionDeleted, onTicketDefinitionSaleEnded, onTicketDefinitionSalePeriodUpdated, onTicketDefinitionSaleStarted, onTicketDefinitionUpdated, queryAvailableTicketDefinitions, queryTicketDefinitions, reorderTicketDefinitions, updateTicketDefinition };
|
|
5310
|
+
export { type ActionEvent, type Address, type AddressLocation, type AddressStreetOneOf, type Agenda, Alignment, type AlignmentWithLiterals, type AnchorData, type App, type AppEmbedData, type AppEmbedDataAppDataOneOf, AppType, type AppTypeWithLiterals, AspectRatio, type AspectRatioWithLiterals, type Asset, type AudioData, type Background, type BackgroundBackgroundOneOf, BackgroundType, type BackgroundTypeWithLiterals, type Badge, type BaseEventMetadata, type BlockquoteData, type BookingData, type Border, type BorderColors, type BulkCopyTicketDefinitionsByEventIdRequest, type BulkCopyTicketDefinitionsByEventIdResponse, type BulkDeleteTicketDefinitionsByFilterRequest, type BulkDeleteTicketDefinitionsByFilterResponse, type BulletedListData, type ButtonData, ButtonDataType, type ButtonDataTypeWithLiterals, type ButtonStyles, type CalendarLinks, type CaptionData, type CardStyles, CardStylesType, type CardStylesTypeWithLiterals, type Category, type CategoryCounts, type CategoryDetails, CategoryStateState, type CategoryStateStateWithLiterals, type CellStyle, type ChangeCurrencyApplicationErrors, type ChangeCurrencyOptions, type ChangeCurrencyRequest, type ChangeCurrencyResponse, type CheckoutFormMessages, CheckoutType, type CheckoutTypeWithLiterals, type CodeBlockData, type CollapsibleListData, type ColorData, type Colors, type CommonAddress, type CommonAddressLocation, type CommonAddressStreetOneOf, type CommonMoney, type CommonStreetAddress, type CommonSubdivision, ConferenceType, type ConferenceTypeWithLiterals, type CopiedTicketDefinition, type CountAvailableTicketDefinitionsApplicationErrors, type CountAvailableTicketDefinitionsOptions, type CountAvailableTicketDefinitionsRequest, type CountAvailableTicketDefinitionsResponse, type CountTicketDefinitionsApplicationErrors, type CountTicketDefinitionsOptions, type CountTicketDefinitionsRequest, type CountTicketDefinitionsResponse, type CreateTicketDefinitionApplicationErrors, type CreateTicketDefinitionOptions, type CreateTicketDefinitionRequest, type CreateTicketDefinitionResponse, Crop, type CropWithLiterals, type CursorPaging, type Cursors, type CustomTag, type Dashboard, type DateAndTimeSettings, type Decoration, type DecorationDataOneOf, DecorationType, type DecorationTypeWithLiterals, type DeleteContext, DeleteStatus, type DeleteStatusWithLiterals, type DeleteTicketDefinitionRequest, type DeleteTicketDefinitionResponse, type Design, type Dimensions, Direction, type DirectionWithLiterals, type DividerData, DividerDataAlignment, type DividerDataAlignmentWithLiterals, type DocumentStyle, type DomainEvent, type DomainEventBodyOneOf, type EmbedData, type Empty, type EntityCreatedEvent, type EntityDeletedEvent, type EntityUpdatedEvent, type Event, type EventCanceled, type EventCreated, type EventData, type EventDeleted, type EventDetails, type EventDisplaySettings, type EventEnded, type EventMetadata, EventStatus, type EventStatusWithLiterals, type EventTicketingSummary, EventType, type EventTypeWithLiterals, type EventUpdated, type EventsLocation, type EventsOccurrence, EventsRecurrenceStatusStatus, type EventsRecurrenceStatusStatusWithLiterals, type EventsRecurrences, type ExtendedFields, type ExternalEvent, type FacetCounts, FeeTypeEnumType, type FeeTypeEnumTypeWithLiterals, type Feed, Field, type FieldWithLiterals, type File, type FileData, type FileSource, type FileSourceDataOneOf, type FontSizeData, FontType, type FontTypeWithLiterals, type Form, type FormMessages, type Formatted, type GIF, type GIFData, GIFType, type GIFTypeWithLiterals, type GalleryData, type GalleryOptions, type GalleryOptionsLayout, type GetTicketDefinitionFromTrashBinRequest, type GetTicketDefinitionFromTrashBinResponse, type GetTicketDefinitionOptions, type GetTicketDefinitionRequest, type GetTicketDefinitionResponse, type GetTicketDefinitionSummaryRequest, type GetTicketDefinitionSummaryResponse, type Gradient, type GuestListConfig, type HTMLData, type HTMLDataDataOneOf, type HeadingData, type Height, type IdentificationData, type IdentificationDataIdOneOf, type Image, type ImageData, type ImageDataStyles, type ImageStyles, InitialExpandedItems, type InitialExpandedItemsWithLiterals, type Input, type InputControl, InputControlType, type InputControlTypeWithLiterals, type InvalidateCache, type InvalidateCacheGetByOneOf, type Item, type ItemDataOneOf, type ItemStyle, type Keyword, type Label, type LabellingSettings, Layout, type LayoutCellData, LayoutType, type LayoutTypeWithLiterals, type LayoutWithLiterals, LineStyle, type LineStyleWithLiterals, type Link, type LinkData, type LinkDataOneOf, type LinkPreviewData, type LinkPreviewDataStyles, type ListEventTicketingSummaryRequest, type ListEventTicketingSummaryResponse, type ListValue, type Location, LocationLocationType, type LocationLocationTypeWithLiterals, LocationType, type LocationTypeWithLiterals, type MapCoordinates, type MapData, type MapSettings, MapType, type MapTypeWithLiterals, type Media, type MentionData, type MessageEnvelope, type MetaSiteSpecialEvent, type MetaSiteSpecialEventPayloadOneOf, type Metadata, type Money, Namespace, type NamespaceChanged, type NamespaceWithLiterals, type Negative, type NegativeResponseConfirmation, type Node, type NodeDataOneOf, type NodeStyle, NodeType, type NodeTypeWithLiterals, NullValue, type NullValueWithLiterals, type Occurrence, type OdeditorAssigned, type OdeditorUnassigned, type Oembed, type OnlineConferencing, type OnlineConferencingConfig, type OnlineConferencingSession, type Option, type OptionDesign, type OptionDetails, type OptionLayout, type OptionSelection, type OptionSelectionSelectedOptionOneOf, type OrderedListData, Orientation, type OrientationWithLiterals, type PDFSettings, type Page, type Paging, type PagingMetadataV2, type ParagraphData, type Permissions, type PicassoAssigned, type PicassoUnassigned, Placement, type PlacementWithLiterals, type PlaybackOptions, type PluginContainerData, PluginContainerDataAlignment, type PluginContainerDataAlignmentWithLiterals, type PluginContainerDataWidth, type PluginContainerDataWidthDataOneOf, type Poll, type PollData, type PollDataLayout, type PollDesign, type PollLayout, PollLayoutDirection, type PollLayoutDirectionWithLiterals, PollLayoutType, type PollLayoutTypeWithLiterals, type PollSettings, Position, type PositionWithLiterals, type Positive, type PositiveResponseConfirmation, type PricingData, type PricingMethod, type PricingMethodPriceOneOf, type PricingOptions, PricingTypeEnumType, type PricingTypeEnumTypeWithLiterals, type QueryAvailableTicketDefinitionsOptions, type QueryAvailableTicketDefinitionsRequest, type QueryAvailableTicketDefinitionsResponse, type QueryTicketDefinitionsOptions, type QueryTicketDefinitionsRequest, type QueryTicketDefinitionsResponse, type QueryV2, type QueryV2PagingMethodOneOf, RecurrenceStatusStatus, type RecurrenceStatusStatusWithLiterals, type Recurrences, type Registration, type RegistrationClosedMessages, RegistrationStatus, type RegistrationStatusWithLiterals, type Rel, type ReorderTicketDefinitionsApplicationErrors, type ReorderTicketDefinitionsOptions, type ReorderTicketDefinitionsOptionsReferenceDefinitionOneOf, type ReorderTicketDefinitionsRequest, type ReorderTicketDefinitionsRequestReferenceDefinitionOneOf, type ReorderTicketDefinitionsResponse, Resizing, type ResizingWithLiterals, type ResponseConfirmation, type RestoreInfo, type RibbonStyles, type RichContent, type RsvpCollection, type RsvpCollectionConfig, type RsvpConfirmationMessages, type RsvpConfirmationMessagesNegativeResponseConfirmation, type RsvpConfirmationMessagesPositiveResponseConfirmation, type RsvpFormMessages, RsvpStatusOptions, type RsvpStatusOptionsWithLiterals, type RsvpSummary, type SalePeriod, type SalePeriodUpdated, SaleStatusEnumStatus, type SaleStatusEnumStatusWithLiterals, type SalesDetails, type ScheduleConfig, type ScheduleLegacyTimeCapsuleTaskRequest, type Scheduling, type SeatingPlanCategoriesSummaryUpdated, type SeoSchema, type SeoSettings, type ServiceProvisioned, type ServiceRemoved, type Settings, type SiteCreated, SiteCreatedContext, type SiteCreatedContextWithLiterals, type SiteDeleted, type SiteHardDeleted, type SiteMarkedAsTemplate, type SiteMarkedAsWixSite, type SitePublished, type SitePurgedExternally, type SiteRenamed, type SiteTransferred, type SiteUndeleted, type SiteUnpublished, type SiteUrl, type SiteUrlChanged, SortOrder, type SortOrderWithLiterals, type Sorting, Source, type SourceWithLiterals, type Spoiler, type SpoilerData, State, type StateWithLiterals, Status, type StatusWithLiterals, type StreetAddress, type StudioAssigned, type StudioUnassigned, type Styles, type StylesBorder, StylesPosition, type StylesPositionWithLiterals, type Subdivision, SubdivisionSubdivisionType, type SubdivisionSubdivisionTypeWithLiterals, SubdivisionType, type SubdivisionTypeWithLiterals, type TableCellData, type TableData, type Tag, Target, type TargetWithLiterals, type TaxConfig, TaxType, type TaxTypeWithLiterals, TextAlignment, type TextAlignmentWithLiterals, type TextData, type TextNodeStyle, type TextStyle, type Thumbnails, ThumbnailsAlignment, type ThumbnailsAlignmentWithLiterals, type TicketDefinition, type TicketDefinitionCreatedEnvelope, type TicketDefinitionDeletedEnvelope, type TicketDefinitionSaleEnded, type TicketDefinitionSaleEndedEnvelope, type TicketDefinitionSalePeriodUpdatedEnvelope, type TicketDefinitionSaleStarted, type TicketDefinitionSaleStartedEnvelope, type TicketDefinitionSummary, type TicketDefinitionUpdatedEnvelope, type TicketDefinitionsQueryBuilder, type TicketDefinitionsQueryResult, type Ticketing, type TicketingConfig, type TicketingSummary, type TicketsConfirmationMessages, type TicketsUnavailableMessages, Type, type TypeWithLiterals, type URI, type UpdateEventTicketingSummaryRequest, type UpdateEventTicketingSummaryResponse, type UpdateFeeTypesBasedOnSettingsRequest, type UpdateFeeTypesBasedOnSettingsResponse, type UpdateTicketDefinition, type UpdateTicketDefinitionApplicationErrors, type UpdateTicketDefinitionOptions, type UpdateTicketDefinitionRequest, type UpdateTicketDefinitionResponse, type UpdateTicketDefinitionSortIndexRequest, type UpdateTicketDefinitionSortIndexResponse, ValueType, type ValueTypeWithLiterals, VerticalAlignment, type VerticalAlignmentWithLiterals, type Video, type VideoData, ViewMode, type ViewModeWithLiterals, ViewRole, type ViewRoleWithLiterals, VisitorType, type VisitorTypeWithLiterals, VoteRole, type VoteRoleWithLiterals, WebhookIdentityType, type WebhookIdentityTypeWithLiterals, Width, WidthType, type WidthTypeWithLiterals, type WidthWithLiterals, bulkDeleteTicketDefinitionsByFilter, changeCurrency, countAvailableTicketDefinitions, countTicketDefinitions, createTicketDefinition, deleteTicketDefinition, getTicketDefinition, onTicketDefinitionCreated, onTicketDefinitionDeleted, onTicketDefinitionSaleEnded, onTicketDefinitionSalePeriodUpdated, onTicketDefinitionSaleStarted, onTicketDefinitionUpdated, queryAvailableTicketDefinitions, queryTicketDefinitions, reorderTicketDefinitions, updateTicketDefinition };
|
|
@@ -1066,14 +1066,6 @@ var WebhookIdentityType = /* @__PURE__ */ ((WebhookIdentityType2) => {
|
|
|
1066
1066
|
WebhookIdentityType2["APP"] = "APP";
|
|
1067
1067
|
return WebhookIdentityType2;
|
|
1068
1068
|
})(WebhookIdentityType || {});
|
|
1069
|
-
var ReservationStatus = /* @__PURE__ */ ((ReservationStatus2) => {
|
|
1070
|
-
ReservationStatus2["RESERVATION_PENDING"] = "RESERVATION_PENDING";
|
|
1071
|
-
ReservationStatus2["RESERVATION_CONFIRMED"] = "RESERVATION_CONFIRMED";
|
|
1072
|
-
ReservationStatus2["RESERVATION_CANCELED"] = "RESERVATION_CANCELED";
|
|
1073
|
-
ReservationStatus2["RESERVATION_CANCELED_MANUALLY"] = "RESERVATION_CANCELED_MANUALLY";
|
|
1074
|
-
ReservationStatus2["RESERVATION_EXPIRED"] = "RESERVATION_EXPIRED";
|
|
1075
|
-
return ReservationStatus2;
|
|
1076
|
-
})(ReservationStatus || {});
|
|
1077
1069
|
async function createTicketDefinition2(ticketDefinition, options) {
|
|
1078
1070
|
const { httpClient, sideEffects } = arguments[2];
|
|
1079
1071
|
const payload = transformPaths2(
|
|
@@ -1524,7 +1516,6 @@ export {
|
|
|
1524
1516
|
PricingTypeEnumType,
|
|
1525
1517
|
RecurrenceStatusStatus,
|
|
1526
1518
|
RegistrationStatus,
|
|
1527
|
-
ReservationStatus,
|
|
1528
1519
|
Resizing,
|
|
1529
1520
|
RsvpStatusOptions,
|
|
1530
1521
|
SaleStatusEnumStatus,
|