@wix/auto_sdk_events_ticket-definitions-v-2 1.0.34 → 1.0.36
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 +20 -21
- package/build/cjs/index.js +13 -11
- package/build/cjs/index.js.map +1 -1
- package/build/cjs/{events-v3-ticket-definition-ticket-definitions-v-2.universal-Ck9oQVat.d.ts → index.typings.d.ts} +312 -1
- package/build/cjs/index.typings.js +1572 -0
- package/build/cjs/index.typings.js.map +1 -0
- package/build/cjs/meta.d.ts +2 -1
- package/build/cjs/meta.js.map +1 -1
- package/build/es/index.d.mts +20 -21
- package/build/es/index.mjs +13 -11
- package/build/es/index.mjs.map +1 -1
- package/build/es/{events-v3-ticket-definition-ticket-definitions-v-2.universal-Ck9oQVat.d.mts → index.typings.d.mts} +312 -1
- package/build/es/index.typings.mjs +1479 -0
- package/build/es/index.typings.mjs.map +1 -0
- package/build/es/meta.d.mts +2 -1
- package/build/es/meta.mjs.map +1 -1
- package/build/internal/cjs/index.d.ts +20 -21
- package/build/internal/cjs/index.js +13 -11
- package/build/internal/cjs/index.js.map +1 -1
- package/build/internal/cjs/{events-v3-ticket-definition-ticket-definitions-v-2.universal-Ck9oQVat.d.ts → index.typings.d.ts} +312 -1
- package/build/internal/cjs/index.typings.js +1572 -0
- package/build/internal/cjs/index.typings.js.map +1 -0
- package/build/internal/cjs/meta.d.ts +2 -1
- package/build/internal/cjs/meta.js.map +1 -1
- package/build/internal/es/index.d.mts +20 -21
- package/build/internal/es/index.mjs +13 -11
- package/build/internal/es/index.mjs.map +1 -1
- package/build/internal/es/{events-v3-ticket-definition-ticket-definitions-v-2.universal-Ck9oQVat.d.mts → index.typings.d.mts} +312 -1
- package/build/internal/es/index.typings.mjs +1479 -0
- package/build/internal/es/index.typings.mjs.map +1 -0
- package/build/internal/es/meta.d.mts +2 -1
- package/build/internal/es/meta.mjs.map +1 -1
- package/package.json +3 -3
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
import { NonNullablePaths } from '@wix/sdk-types';
|
|
2
|
+
|
|
1
3
|
interface TicketDefinition {
|
|
2
4
|
/**
|
|
3
5
|
* Ticket definition ID.
|
|
@@ -383,6 +385,8 @@ declare enum SubdivisionSubdivisionType {
|
|
|
383
385
|
/** ADMINISTRATIVE_AREA_LEVEL_0. Indicates the national political entity, and is typically the highest order type returned by the Geocoder. */
|
|
384
386
|
COUNTRY = "COUNTRY"
|
|
385
387
|
}
|
|
388
|
+
/** @enumType */
|
|
389
|
+
type SubdivisionSubdivisionTypeWithLiterals = SubdivisionSubdivisionType | 'UNKNOWN_SUBDIVISION_TYPE' | 'ADMINISTRATIVE_AREA_LEVEL_1' | 'ADMINISTRATIVE_AREA_LEVEL_2' | 'ADMINISTRATIVE_AREA_LEVEL_3' | 'ADMINISTRATIVE_AREA_LEVEL_4' | 'ADMINISTRATIVE_AREA_LEVEL_5' | 'COUNTRY';
|
|
386
390
|
interface DateAndTimeSettings {
|
|
387
391
|
/** Whether the event date and time are TBD. */
|
|
388
392
|
dateAndTimeTbd?: boolean | null;
|
|
@@ -1175,6 +1179,8 @@ declare enum SubdivisionType {
|
|
|
1175
1179
|
/** ADMINISTRATIVE_AREA_LEVEL_0. Indicates the national political entity, and is typically the highest order type returned by the Geocoder. */
|
|
1176
1180
|
COUNTRY = "COUNTRY"
|
|
1177
1181
|
}
|
|
1182
|
+
/** @enumType */
|
|
1183
|
+
type SubdivisionTypeWithLiterals = SubdivisionType | 'UNKNOWN_SUBDIVISION_TYPE' | 'ADMINISTRATIVE_AREA_LEVEL_1' | 'ADMINISTRATIVE_AREA_LEVEL_2' | 'ADMINISTRATIVE_AREA_LEVEL_3' | 'ADMINISTRATIVE_AREA_LEVEL_4' | 'ADMINISTRATIVE_AREA_LEVEL_5' | 'COUNTRY';
|
|
1178
1184
|
interface ScheduleConfig {
|
|
1179
1185
|
/**
|
|
1180
1186
|
* Defines event as TBD (To Be Determined) schedule.
|
|
@@ -3453,6 +3459,8 @@ declare enum NullValue {
|
|
|
3453
3459
|
/** Null value. */
|
|
3454
3460
|
NULL_VALUE = "NULL_VALUE"
|
|
3455
3461
|
}
|
|
3462
|
+
/** @enumType */
|
|
3463
|
+
type NullValueWithLiterals = NullValue | 'NULL_VALUE';
|
|
3456
3464
|
/**
|
|
3457
3465
|
* `ListValue` is a wrapper around a repeated field of values.
|
|
3458
3466
|
*
|
|
@@ -4465,6 +4473,44 @@ interface ReservationUpdated {
|
|
|
4465
4473
|
*/
|
|
4466
4474
|
counts?: ReservationCount[];
|
|
4467
4475
|
}
|
|
4476
|
+
type CreateTicketDefinitionApplicationErrors = {
|
|
4477
|
+
code?: 'INVALID_EVENT_TYPE';
|
|
4478
|
+
description?: string;
|
|
4479
|
+
data?: Record<string, any>;
|
|
4480
|
+
} | {
|
|
4481
|
+
code?: 'TICKET_DEFINITIONS_LIMIT_REACHED';
|
|
4482
|
+
description?: string;
|
|
4483
|
+
data?: Record<string, any>;
|
|
4484
|
+
} | {
|
|
4485
|
+
code?: 'INVALID_SALE_PERIOD';
|
|
4486
|
+
description?: string;
|
|
4487
|
+
data?: Record<string, any>;
|
|
4488
|
+
};
|
|
4489
|
+
type UpdateTicketDefinitionApplicationErrors = {
|
|
4490
|
+
code?: 'INVALID_SALE_PERIOD';
|
|
4491
|
+
description?: string;
|
|
4492
|
+
data?: Record<string, any>;
|
|
4493
|
+
};
|
|
4494
|
+
type ReorderTicketDefinitionsApplicationErrors = {
|
|
4495
|
+
code?: 'INVALID_REORDER_INSTRUCTION';
|
|
4496
|
+
description?: string;
|
|
4497
|
+
data?: Record<string, any>;
|
|
4498
|
+
};
|
|
4499
|
+
type CountTicketDefinitionsApplicationErrors = {
|
|
4500
|
+
code?: 'FILTER_PARSER_ERROR';
|
|
4501
|
+
description?: string;
|
|
4502
|
+
data?: Record<string, any>;
|
|
4503
|
+
};
|
|
4504
|
+
type CountAvailableTicketDefinitionsApplicationErrors = {
|
|
4505
|
+
code?: 'FILTER_PARSER_ERROR';
|
|
4506
|
+
description?: string;
|
|
4507
|
+
data?: Record<string, any>;
|
|
4508
|
+
};
|
|
4509
|
+
type ChangeCurrencyApplicationErrors = {
|
|
4510
|
+
code?: 'CURRENCY_LOCKED';
|
|
4511
|
+
description?: string;
|
|
4512
|
+
data?: Record<string, any>;
|
|
4513
|
+
};
|
|
4468
4514
|
interface BaseEventMetadata {
|
|
4469
4515
|
/**
|
|
4470
4516
|
* App instance ID.
|
|
@@ -4513,25 +4559,144 @@ interface TicketDefinitionCreatedEnvelope {
|
|
|
4513
4559
|
entity: TicketDefinition;
|
|
4514
4560
|
metadata: EventMetadata;
|
|
4515
4561
|
}
|
|
4562
|
+
/**
|
|
4563
|
+
* Triggered when a ticket definition is created.
|
|
4564
|
+
* @permissionScope Manage Events - all permissions
|
|
4565
|
+
* @permissionScopeId SCOPE.DC-EVENTS-MEGA.MANAGE-EVENTS
|
|
4566
|
+
* @permissionScope Manage Events
|
|
4567
|
+
* @permissionScopeId SCOPE.EVENTS.MANAGE-EVENTS
|
|
4568
|
+
* @permissionScope Manage Orders
|
|
4569
|
+
* @permissionScopeId SCOPE.DC-EVENTS.MANAGE-ORDERS
|
|
4570
|
+
* @permissionScope Manage Ticket Definitions
|
|
4571
|
+
* @permissionScopeId SCOPE.DC-EVENTS.MANAGE-TICKET-DEF
|
|
4572
|
+
* @permissionId WIX_EVENTS.READ_TICKET_DEFINITIONS
|
|
4573
|
+
* @webhook
|
|
4574
|
+
* @eventType wix.events.v3.ticket_definition_created
|
|
4575
|
+
* @slug created
|
|
4576
|
+
*/
|
|
4577
|
+
declare function onTicketDefinitionCreated(handler: (event: TicketDefinitionCreatedEnvelope) => void | Promise<void>): void;
|
|
4516
4578
|
interface TicketDefinitionDeletedEnvelope {
|
|
4579
|
+
entity: TicketDefinition;
|
|
4517
4580
|
metadata: EventMetadata;
|
|
4518
4581
|
}
|
|
4582
|
+
/**
|
|
4583
|
+
* Triggered when a ticket definition is deleted.
|
|
4584
|
+
* @permissionScope Manage Events - all permissions
|
|
4585
|
+
* @permissionScopeId SCOPE.DC-EVENTS-MEGA.MANAGE-EVENTS
|
|
4586
|
+
* @permissionScope Manage Events
|
|
4587
|
+
* @permissionScopeId SCOPE.EVENTS.MANAGE-EVENTS
|
|
4588
|
+
* @permissionScope Manage Orders
|
|
4589
|
+
* @permissionScopeId SCOPE.DC-EVENTS.MANAGE-ORDERS
|
|
4590
|
+
* @permissionScope Manage Ticket Definitions
|
|
4591
|
+
* @permissionScopeId SCOPE.DC-EVENTS.MANAGE-TICKET-DEF
|
|
4592
|
+
* @permissionId WIX_EVENTS.READ_TICKET_DEFINITIONS
|
|
4593
|
+
* @webhook
|
|
4594
|
+
* @eventType wix.events.v3.ticket_definition_deleted
|
|
4595
|
+
* @slug deleted
|
|
4596
|
+
*/
|
|
4597
|
+
declare function onTicketDefinitionDeleted(handler: (event: TicketDefinitionDeletedEnvelope) => void | Promise<void>): void;
|
|
4519
4598
|
interface TicketDefinitionSaleEndedEnvelope {
|
|
4520
4599
|
data: TicketDefinitionSaleEnded;
|
|
4521
4600
|
metadata: EventMetadata;
|
|
4522
4601
|
}
|
|
4602
|
+
/**
|
|
4603
|
+
* Triggered when a ticket sale ends. Sales details are not included in the payload.
|
|
4604
|
+
* @permissionScope Manage Events - all permissions
|
|
4605
|
+
* @permissionScopeId SCOPE.DC-EVENTS-MEGA.MANAGE-EVENTS
|
|
4606
|
+
* @permissionScope Manage Events
|
|
4607
|
+
* @permissionScopeId SCOPE.EVENTS.MANAGE-EVENTS
|
|
4608
|
+
* @permissionScope Manage Orders
|
|
4609
|
+
* @permissionScopeId SCOPE.DC-EVENTS.MANAGE-ORDERS
|
|
4610
|
+
* @permissionScope Manage Ticket Definitions
|
|
4611
|
+
* @permissionScopeId SCOPE.DC-EVENTS.MANAGE-TICKET-DEF
|
|
4612
|
+
* @permissionId WIX_EVENTS.READ_TICKET_DEFINITIONS
|
|
4613
|
+
* @webhook
|
|
4614
|
+
* @eventType wix.events.v3.ticket_definition_sale_ended
|
|
4615
|
+
* @slug sale_ended
|
|
4616
|
+
*/
|
|
4617
|
+
declare function onTicketDefinitionSaleEnded(handler: (event: TicketDefinitionSaleEndedEnvelope) => void | Promise<void>): void;
|
|
4523
4618
|
interface TicketDefinitionSalePeriodUpdatedEnvelope {
|
|
4524
4619
|
data: SalePeriodUpdated;
|
|
4525
4620
|
metadata: EventMetadata;
|
|
4526
4621
|
}
|
|
4622
|
+
/**
|
|
4623
|
+
* Triggered when a sale period is updated.
|
|
4624
|
+
* @permissionScope Manage Events - all permissions
|
|
4625
|
+
* @permissionScopeId SCOPE.DC-EVENTS-MEGA.MANAGE-EVENTS
|
|
4626
|
+
* @permissionScope Manage Events
|
|
4627
|
+
* @permissionScopeId SCOPE.EVENTS.MANAGE-EVENTS
|
|
4628
|
+
* @permissionScope Manage Orders
|
|
4629
|
+
* @permissionScopeId SCOPE.DC-EVENTS.MANAGE-ORDERS
|
|
4630
|
+
* @permissionScope Manage Ticket Definitions
|
|
4631
|
+
* @permissionScopeId SCOPE.DC-EVENTS.MANAGE-TICKET-DEF
|
|
4632
|
+
* @permissionId WIX_EVENTS.READ_TICKET_DEFINITIONS
|
|
4633
|
+
* @webhook
|
|
4634
|
+
* @eventType wix.events.v3.ticket_definition_sale_period_updated
|
|
4635
|
+
* @slug sale_period_updated
|
|
4636
|
+
*/
|
|
4637
|
+
declare function onTicketDefinitionSalePeriodUpdated(handler: (event: TicketDefinitionSalePeriodUpdatedEnvelope) => void | Promise<void>): void;
|
|
4527
4638
|
interface TicketDefinitionSaleStartedEnvelope {
|
|
4528
4639
|
data: TicketDefinitionSaleStarted;
|
|
4529
4640
|
metadata: EventMetadata;
|
|
4530
4641
|
}
|
|
4642
|
+
/**
|
|
4643
|
+
* Triggered when a ticket sale starts. Sales details are not included in the payload.
|
|
4644
|
+
* @permissionScope Manage Events - all permissions
|
|
4645
|
+
* @permissionScopeId SCOPE.DC-EVENTS-MEGA.MANAGE-EVENTS
|
|
4646
|
+
* @permissionScope Manage Events
|
|
4647
|
+
* @permissionScopeId SCOPE.EVENTS.MANAGE-EVENTS
|
|
4648
|
+
* @permissionScope Manage Orders
|
|
4649
|
+
* @permissionScopeId SCOPE.DC-EVENTS.MANAGE-ORDERS
|
|
4650
|
+
* @permissionScope Manage Ticket Definitions
|
|
4651
|
+
* @permissionScopeId SCOPE.DC-EVENTS.MANAGE-TICKET-DEF
|
|
4652
|
+
* @permissionId WIX_EVENTS.READ_TICKET_DEFINITIONS
|
|
4653
|
+
* @webhook
|
|
4654
|
+
* @eventType wix.events.v3.ticket_definition_sale_started
|
|
4655
|
+
* @slug sale_started
|
|
4656
|
+
*/
|
|
4657
|
+
declare function onTicketDefinitionSaleStarted(handler: (event: TicketDefinitionSaleStartedEnvelope) => void | Promise<void>): void;
|
|
4531
4658
|
interface TicketDefinitionUpdatedEnvelope {
|
|
4532
4659
|
entity: TicketDefinition;
|
|
4533
4660
|
metadata: EventMetadata;
|
|
4534
4661
|
}
|
|
4662
|
+
/**
|
|
4663
|
+
* Triggered when a ticket definition is updated.
|
|
4664
|
+
* @permissionScope Manage Events - all permissions
|
|
4665
|
+
* @permissionScopeId SCOPE.DC-EVENTS-MEGA.MANAGE-EVENTS
|
|
4666
|
+
* @permissionScope Manage Events
|
|
4667
|
+
* @permissionScopeId SCOPE.EVENTS.MANAGE-EVENTS
|
|
4668
|
+
* @permissionScope Manage Orders
|
|
4669
|
+
* @permissionScopeId SCOPE.DC-EVENTS.MANAGE-ORDERS
|
|
4670
|
+
* @permissionScope Manage Ticket Definitions
|
|
4671
|
+
* @permissionScopeId SCOPE.DC-EVENTS.MANAGE-TICKET-DEF
|
|
4672
|
+
* @permissionId WIX_EVENTS.READ_TICKET_DEFINITIONS
|
|
4673
|
+
* @webhook
|
|
4674
|
+
* @eventType wix.events.v3.ticket_definition_updated
|
|
4675
|
+
* @slug updated
|
|
4676
|
+
*/
|
|
4677
|
+
declare function onTicketDefinitionUpdated(handler: (event: TicketDefinitionUpdatedEnvelope) => void | Promise<void>): void;
|
|
4678
|
+
type TicketDefinitionNonNullablePaths = `hidden` | `limited` | `pricingMethod.fixedPrice.value` | `pricingMethod.fixedPrice.currency` | `pricingMethod.pricingOptions.optionDetails` | `pricingMethod.pricingType` | `pricingMethod.free` | `feeType` | `salePeriod.displayNotOnSale` | `saleStatus` | `eventDetails.location.type` | `eventDetails.location.address.streetAddress.number` | `eventDetails.location.address.streetAddress.name` | `eventDetails.dateAndTimeSettings.recurrenceStatus` | `eventDetails.dateAndTimeSettings.recurringEvents.individualEventDates` | `eventDetails.dateAndTimeSettings.recurringEvents.individualEventDates.${number}.showTimeZone` | `eventDetails.status`;
|
|
4679
|
+
/**
|
|
4680
|
+
* Creates a ticket definition.
|
|
4681
|
+
*
|
|
4682
|
+
*
|
|
4683
|
+
* It is allowed to create up to 100 definitions per event.
|
|
4684
|
+
* @param ticketDefinition - Ticket definition info.
|
|
4685
|
+
* @public
|
|
4686
|
+
* @requiredField ticketDefinition
|
|
4687
|
+
* @requiredField ticketDefinition.eventId
|
|
4688
|
+
* @requiredField ticketDefinition.feeType
|
|
4689
|
+
* @requiredField ticketDefinition.name
|
|
4690
|
+
* @requiredField ticketDefinition.pricingMethod
|
|
4691
|
+
* @param options - Optional fields.
|
|
4692
|
+
* @permissionId WIX_EVENTS.MANAGE_TICKET_DEFINITIONS
|
|
4693
|
+
* @applicableIdentity APP
|
|
4694
|
+
* @returns Created ticket definition.
|
|
4695
|
+
* @fqn wix.events.ticketdef.v3.TicketDefinitionManagement.CreateTicketDefinition
|
|
4696
|
+
*/
|
|
4697
|
+
declare function createTicketDefinition(ticketDefinition: NonNullablePaths<TicketDefinition, `eventId` | `feeType` | `name` | `pricingMethod`>, options?: CreateTicketDefinitionOptions): Promise<NonNullablePaths<TicketDefinition, TicketDefinitionNonNullablePaths> & {
|
|
4698
|
+
__applicationErrorsType?: CreateTicketDefinitionApplicationErrors;
|
|
4699
|
+
}>;
|
|
4535
4700
|
interface CreateTicketDefinitionOptions {
|
|
4536
4701
|
/**
|
|
4537
4702
|
* Predefined sets of fields to return.
|
|
@@ -4539,6 +4704,26 @@ interface CreateTicketDefinitionOptions {
|
|
|
4539
4704
|
*/
|
|
4540
4705
|
fields?: FieldWithLiterals[];
|
|
4541
4706
|
}
|
|
4707
|
+
/**
|
|
4708
|
+
* Updates a ticket definition.
|
|
4709
|
+
*
|
|
4710
|
+
*
|
|
4711
|
+
* Each time the ticket definition is updated, `revision` increments by 1. The existing `revision` must be included when updating the ticket definition. This ensures you're working with the latest ticket definition and prevents unintended overwrites.
|
|
4712
|
+
* @param _id - Ticket definition ID.
|
|
4713
|
+
* @public
|
|
4714
|
+
* @requiredField _id
|
|
4715
|
+
* @requiredField ticketDefinition
|
|
4716
|
+
* @requiredField ticketDefinition.revision
|
|
4717
|
+
* @param options - Optional fields.
|
|
4718
|
+
* @param ticketDefinition - Ticket definition to update.
|
|
4719
|
+
* @permissionId WIX_EVENTS.MANAGE_TICKET_DEFINITIONS
|
|
4720
|
+
* @applicableIdentity APP
|
|
4721
|
+
* @returns The updated ticket definition.
|
|
4722
|
+
* @fqn wix.events.ticketdef.v3.TicketDefinitionManagement.UpdateTicketDefinition
|
|
4723
|
+
*/
|
|
4724
|
+
declare function updateTicketDefinition(_id: string, ticketDefinition: NonNullablePaths<UpdateTicketDefinition, `revision`>, options?: UpdateTicketDefinitionOptions): Promise<NonNullablePaths<TicketDefinition, TicketDefinitionNonNullablePaths> & {
|
|
4725
|
+
__applicationErrorsType?: UpdateTicketDefinitionApplicationErrors;
|
|
4726
|
+
}>;
|
|
4542
4727
|
interface UpdateTicketDefinition {
|
|
4543
4728
|
/**
|
|
4544
4729
|
* Ticket definition ID.
|
|
@@ -4635,6 +4820,18 @@ interface UpdateTicketDefinitionOptions {
|
|
|
4635
4820
|
*/
|
|
4636
4821
|
fields?: FieldWithLiterals[];
|
|
4637
4822
|
}
|
|
4823
|
+
/**
|
|
4824
|
+
* Retrieves a ticket definition by ID.
|
|
4825
|
+
* @param ticketDefinitionId - Ticket definition ID.
|
|
4826
|
+
* @public
|
|
4827
|
+
* @requiredField ticketDefinitionId
|
|
4828
|
+
* @param options - Optional fields.
|
|
4829
|
+
* @permissionId WIX_EVENTS.READ_TICKET_DEFINITIONS
|
|
4830
|
+
* @applicableIdentity APP
|
|
4831
|
+
* @returns The requested ticket definition.
|
|
4832
|
+
* @fqn wix.events.ticketdef.v3.TicketDefinitionManagement.GetTicketDefinition
|
|
4833
|
+
*/
|
|
4834
|
+
declare function getTicketDefinition(ticketDefinitionId: string, options?: GetTicketDefinitionOptions): Promise<NonNullablePaths<TicketDefinition, TicketDefinitionNonNullablePaths>>;
|
|
4638
4835
|
interface GetTicketDefinitionOptions {
|
|
4639
4836
|
/**
|
|
4640
4837
|
* Predefined sets of fields to return.
|
|
@@ -4642,6 +4839,31 @@ interface GetTicketDefinitionOptions {
|
|
|
4642
4839
|
*/
|
|
4643
4840
|
fields?: FieldWithLiterals[];
|
|
4644
4841
|
}
|
|
4842
|
+
/**
|
|
4843
|
+
* Permanently deletes a ticket definition.
|
|
4844
|
+
* @param ticketDefinitionId - ID of the ticket definition to delete.
|
|
4845
|
+
* @public
|
|
4846
|
+
* @requiredField ticketDefinitionId
|
|
4847
|
+
* @permissionId WIX_EVENTS.MANAGE_TICKET_DEFINITIONS
|
|
4848
|
+
* @applicableIdentity APP
|
|
4849
|
+
* @fqn wix.events.ticketdef.v3.TicketDefinitionManagement.DeleteTicketDefinition
|
|
4850
|
+
*/
|
|
4851
|
+
declare function deleteTicketDefinition(ticketDefinitionId: string): Promise<void>;
|
|
4852
|
+
/**
|
|
4853
|
+
* Changes ticket definitions order in an event dashboard and the list of available tickets in the ticket picker.
|
|
4854
|
+
* > **Note:** It is possible to use both `beforeTicketDefinitionId` and `afterTicketDefinitionId` at the same time but only the last one defined will be executed.
|
|
4855
|
+
* @param eventId - Event ID.
|
|
4856
|
+
* @public
|
|
4857
|
+
* @requiredField eventId
|
|
4858
|
+
* @requiredField options.ticketDefinitionId
|
|
4859
|
+
* @param options - Optional fields.
|
|
4860
|
+
* @permissionId WIX_EVENTS.MANAGE_TICKET_DEFINITIONS
|
|
4861
|
+
* @applicableIdentity APP
|
|
4862
|
+
* @fqn wix.events.ticketdef.v3.TicketDefinitionManagement.ReorderTicketDefinitions
|
|
4863
|
+
*/
|
|
4864
|
+
declare function reorderTicketDefinitions(eventId: string, options?: NonNullablePaths<ReorderTicketDefinitionsOptions, `ticketDefinitionId`>): Promise<void & {
|
|
4865
|
+
__applicationErrorsType?: ReorderTicketDefinitionsApplicationErrors;
|
|
4866
|
+
}>;
|
|
4645
4867
|
interface ReorderTicketDefinitionsOptions extends ReorderTicketDefinitionsOptionsReferenceDefinitionOneOf {
|
|
4646
4868
|
/**
|
|
4647
4869
|
* Ticket definition ID.
|
|
@@ -4672,6 +4894,19 @@ interface ReorderTicketDefinitionsOptionsReferenceDefinitionOneOf {
|
|
|
4672
4894
|
*/
|
|
4673
4895
|
afterDefinitionId?: string;
|
|
4674
4896
|
}
|
|
4897
|
+
/**
|
|
4898
|
+
* Retrieves a list of ticket definitions, given the provided paging, filtering, and sorting.
|
|
4899
|
+
* Query Ticket Definitions runs with these defaults, which you can override:
|
|
4900
|
+
* - `createdDate` is sorted in `ASC` order
|
|
4901
|
+
* - `paging.limit` is `100`
|
|
4902
|
+
* - `paging.offset` is `0`
|
|
4903
|
+
* @public
|
|
4904
|
+
* @param options - Optional fields.
|
|
4905
|
+
* @permissionId WIX_EVENTS.READ_TICKET_DEFINITIONS
|
|
4906
|
+
* @applicableIdentity APP
|
|
4907
|
+
* @fqn wix.events.ticketdef.v3.TicketDefinitionManagement.QueryTicketDefinitions
|
|
4908
|
+
*/
|
|
4909
|
+
declare function queryTicketDefinitions(options?: QueryTicketDefinitionsOptions): TicketDefinitionsQueryBuilder;
|
|
4675
4910
|
interface QueryTicketDefinitionsOptions {
|
|
4676
4911
|
/**
|
|
4677
4912
|
* Predefined sets of fields to return.
|
|
@@ -4729,6 +4964,32 @@ interface TicketDefinitionsQueryBuilder {
|
|
|
4729
4964
|
skipTo: (cursor: string) => TicketDefinitionsQueryBuilder;
|
|
4730
4965
|
find: () => Promise<TicketDefinitionsQueryResult>;
|
|
4731
4966
|
}
|
|
4967
|
+
/**
|
|
4968
|
+
* Retrieves a list of available ticket definitions, given the provided paging, filtering, and sorting.
|
|
4969
|
+
*
|
|
4970
|
+
* This endpoint retrieves ticket definitions that aren't in the `hidden` state. The available ticket definitions can be retrieved by site visitors.
|
|
4971
|
+
*
|
|
4972
|
+
* > **Note:** You need the `WIX_EVENTS.READ_TICKET_DEFINITIONS` permission to get the `salesDetails` field values.
|
|
4973
|
+
*
|
|
4974
|
+
* Query Available Ticket Definitions runs with these defaults, which you can override:
|
|
4975
|
+
* - `createdDate` is sorted in `ASC` order
|
|
4976
|
+
* - `paging.limit` is `100`
|
|
4977
|
+
* - `paging.offset` is `0`
|
|
4978
|
+
*
|
|
4979
|
+
* For field support for filters and sorting, see [Ticket Definitions: Supported Filters and Sorting](https://dev.wix.com/docs/rest/business-solutions/events/ticket-definition-v3/filter-and-sort).
|
|
4980
|
+
* To learn about working with _Query_ endpoints, see [API Query Language](https://dev.wix.com/api/rest/getting-started/api-query-language).
|
|
4981
|
+
* @param query - Query options. See [API Query Language](https://dev.wix.com/api/rest/getting-started/api-query-language) for more details.
|
|
4982
|
+
* @public
|
|
4983
|
+
* @requiredField query
|
|
4984
|
+
* @param options - Optional fields.
|
|
4985
|
+
* @permissionId WIX_EVENTS.READ_AVAILABLE_TICKET_DEFINITIONS
|
|
4986
|
+
* @applicableIdentity APP
|
|
4987
|
+
* @applicableIdentity VISITOR
|
|
4988
|
+
* @fqn wix.events.ticketdef.v3.TicketDefinitionManagement.QueryAvailableTicketDefinitions
|
|
4989
|
+
*/
|
|
4990
|
+
declare function queryAvailableTicketDefinitions(query: QueryV2, options?: QueryAvailableTicketDefinitionsOptions): Promise<NonNullablePaths<QueryAvailableTicketDefinitionsResponse, {
|
|
4991
|
+
[P in TicketDefinitionNonNullablePaths]: `ticketDefinitions.${number}.${P}`;
|
|
4992
|
+
}[TicketDefinitionNonNullablePaths]>>;
|
|
4732
4993
|
interface QueryAvailableTicketDefinitionsOptions {
|
|
4733
4994
|
/**
|
|
4734
4995
|
* Predefined sets of fields to return.
|
|
@@ -4736,6 +4997,17 @@ interface QueryAvailableTicketDefinitionsOptions {
|
|
|
4736
4997
|
*/
|
|
4737
4998
|
fields?: FieldWithLiterals[];
|
|
4738
4999
|
}
|
|
5000
|
+
/**
|
|
5001
|
+
* Counts ticket definitions by the `saleStatus` field, including those with the `hidden` status.
|
|
5002
|
+
* @public
|
|
5003
|
+
* @param options - Optional fields.
|
|
5004
|
+
* @permissionId WIX_EVENTS.READ_TICKET_DEFINITIONS
|
|
5005
|
+
* @applicableIdentity APP
|
|
5006
|
+
* @fqn wix.events.ticketdef.v3.TicketDefinitionManagement.CountTicketDefinitions
|
|
5007
|
+
*/
|
|
5008
|
+
declare function countTicketDefinitions(options?: CountTicketDefinitionsOptions): Promise<CountTicketDefinitionsResponse & {
|
|
5009
|
+
__applicationErrorsType?: CountTicketDefinitionsApplicationErrors;
|
|
5010
|
+
}>;
|
|
4739
5011
|
interface CountTicketDefinitionsOptions {
|
|
4740
5012
|
/** Filter object in the following format: <br/> `"filter" : { "fieldName1": "value1" }`. */
|
|
4741
5013
|
filter?: Record<string, any> | null;
|
|
@@ -4748,10 +5020,49 @@ interface CountTicketDefinitionsOptions {
|
|
|
4748
5020
|
*/
|
|
4749
5021
|
facet?: string[];
|
|
4750
5022
|
}
|
|
5023
|
+
/**
|
|
5024
|
+
* Counts ticket definitions by the `saleStatus`, excluding those with the `hidden` status.
|
|
5025
|
+
* @public
|
|
5026
|
+
* @param options - Optional fields.
|
|
5027
|
+
* @permissionId WIX_EVENTS.READ_AVAILABLE_TICKET_DEFINITIONS
|
|
5028
|
+
* @applicableIdentity APP
|
|
5029
|
+
* @applicableIdentity VISITOR
|
|
5030
|
+
* @fqn wix.events.ticketdef.v3.TicketDefinitionManagement.CountAvailableTicketDefinitions
|
|
5031
|
+
*/
|
|
5032
|
+
declare function countAvailableTicketDefinitions(options?: CountAvailableTicketDefinitionsOptions): Promise<CountAvailableTicketDefinitionsResponse & {
|
|
5033
|
+
__applicationErrorsType?: CountAvailableTicketDefinitionsApplicationErrors;
|
|
5034
|
+
}>;
|
|
4751
5035
|
interface CountAvailableTicketDefinitionsOptions {
|
|
4752
5036
|
/** Filter object in the following format: <br/> `"filter" : { "fieldName1": "value1" }`. */
|
|
4753
5037
|
filter?: Record<string, any> | null;
|
|
4754
5038
|
}
|
|
5039
|
+
/**
|
|
5040
|
+
* Deletes multiple ticket definitions.
|
|
5041
|
+
*
|
|
5042
|
+
* All ticket definitions that meet the specified `filter` criteria are deleted.
|
|
5043
|
+
* @param filter - Filter object in the following format: <br/> `"filter" : { "fieldName1": "value1" }`. <br/> <br/> **Example:** <br/> `"filter" : { "eventId": "3d3d5c04-ece0-45a8-85f0-11a58edaa192" }`
|
|
5044
|
+
* @public
|
|
5045
|
+
* @requiredField filter
|
|
5046
|
+
* @permissionId WIX_EVENTS.MANAGE_TICKET_DEFINITIONS
|
|
5047
|
+
* @applicableIdentity APP
|
|
5048
|
+
* @fqn wix.events.ticketdef.v3.TicketDefinitionManagement.BulkDeleteTicketDefinitionsByFilter
|
|
5049
|
+
*/
|
|
5050
|
+
declare function bulkDeleteTicketDefinitionsByFilter(filter: Record<string, any>): Promise<void>;
|
|
5051
|
+
/**
|
|
5052
|
+
* Changes ticket price currency per event.
|
|
5053
|
+
* @param eventId - Event ID.
|
|
5054
|
+
* @public
|
|
5055
|
+
* @requiredField eventId
|
|
5056
|
+
* @requiredField options
|
|
5057
|
+
* @requiredField options.currency
|
|
5058
|
+
* @param options - Optional fields.
|
|
5059
|
+
* @permissionId WIX_EVENTS.MANAGE_TICKET_DEFINITIONS
|
|
5060
|
+
* @applicableIdentity APP
|
|
5061
|
+
* @fqn wix.events.ticketdef.v3.TicketDefinitionManagement.ChangeCurrency
|
|
5062
|
+
*/
|
|
5063
|
+
declare function changeCurrency(eventId: string, options: NonNullablePaths<ChangeCurrencyOptions, `currency`>): Promise<void & {
|
|
5064
|
+
__applicationErrorsType?: ChangeCurrencyApplicationErrors;
|
|
5065
|
+
}>;
|
|
4755
5066
|
interface ChangeCurrencyOptions {
|
|
4756
5067
|
/**
|
|
4757
5068
|
* Ticket price currency in 3-letter [ISO-4217 alphabetic](https://en.wikipedia.org/wiki/ISO_4217#Active_codes) format.
|
|
@@ -4761,4 +5072,4 @@ interface ChangeCurrencyOptions {
|
|
|
4761
5072
|
currency: string;
|
|
4762
5073
|
}
|
|
4763
5074
|
|
|
4764
|
-
export { ViewMode as $, RsvpStatusOptions as A, TaxType as B, type CreateTicketDefinitionOptions as C, ValueType as D, EventsRecurrenceStatusStatus as E, FeeTypeEnumType as F, type GetTicketDefinitionOptions as G, ConferenceType as H, InputControlType as I, CategoryStateState as J, PluginContainerDataAlignment as K, LocationType as L, ButtonDataType as M, NodeType as N, Target as O, PricingTypeEnumType as P, type QueryTicketDefinitionsOptions as Q, type ReorderTicketDefinitionsOptions as R, SaleStatusEnumStatus as S, type TicketDefinition as T, type UpdateTicketDefinition as U, VisitorType as V, WidthType as W, TextAlignment as X, LineStyle as Y, Width as Z, Alignment as _, type UpdateTicketDefinitionOptions as a, type DeleteTicketDefinitionResponse as a$, LayoutType as a0, Orientation as a1, Crop as a2, ThumbnailsAlignment as a3, GIFType as a4, Source as a5, Position as a6, MapType as a7, ViewRole as a8, VoteRole as a9, type Location as aA, type CommonAddress as aB, type CommonAddressStreetOneOf as aC, type CommonStreetAddress as aD, type CommonAddressLocation as aE, type CommonSubdivision as aF, type DateAndTimeSettings as aG, type Recurrences as aH, type Occurrence as aI, type Formatted as aJ, type InvalidateCache as aK, type InvalidateCacheGetByOneOf as aL, type App as aM, type Page as aN, type URI as aO, type File as aP, type CustomTag as aQ, type SalePeriodUpdated as aR, type TicketDefinitionSaleStarted as aS, type TicketDefinitionSaleEnded as aT, type CreateTicketDefinitionRequest as aU, type CreateTicketDefinitionResponse as aV, type UpdateTicketDefinitionRequest as aW, type UpdateTicketDefinitionResponse as aX, type GetTicketDefinitionRequest as aY, type GetTicketDefinitionResponse as aZ, type DeleteTicketDefinitionRequest as a_, PollLayoutType as aa, PollLayoutDirection as ab, BackgroundType as ac, DecorationType as ad, FontType as ae, AppType as af, InitialExpandedItems as ag, Direction as ah, VerticalAlignment as ai, NullValue as aj, Type as ak, State as al, SiteCreatedContext as am, Namespace as an, DeleteStatus as ao, WebhookIdentityType as ap, ReservationStatus as aq, type SalePeriod as ar, type PricingMethod as as, type PricingMethodPriceOneOf as at, type CommonMoney as au, type PricingOptions as av, type OptionDetails as aw, type SalesDetails as ax, type ExtendedFields as ay, type EventDetails as az, type TicketDefinitionsQueryBuilder as b, type Positive as b$, type ReorderTicketDefinitionsRequest as b0, type ReorderTicketDefinitionsRequestReferenceDefinitionOneOf as b1, type ReorderTicketDefinitionsResponse as b2, type UpdateTicketDefinitionSortIndexRequest as b3, type UpdateTicketDefinitionSortIndexResponse as b4, type QueryTicketDefinitionsRequest as b5, type QueryV2PagingMethodOneOf as b6, type Sorting as b7, type Paging as b8, type CursorPaging as b9, type AddressLocation as bA, type Subdivision as bB, type ScheduleConfig as bC, type EventsRecurrences as bD, type EventsOccurrence as bE, type Event as bF, type Scheduling as bG, type Registration as bH, type RsvpCollection as bI, type RsvpCollectionConfig as bJ, type Ticketing as bK, type TicketingConfig as bL, type TaxConfig as bM, type Money as bN, type ExternalEvent as bO, type CalendarLinks as bP, type SiteUrl as bQ, type Form as bR, type InputControl as bS, type Input as bT, type OptionSelection as bU, type OptionSelectionSelectedOptionOneOf as bV, type Label as bW, type FormMessages as bX, type RsvpFormMessages as bY, type PositiveResponseConfirmation as bZ, type NegativeResponseConfirmation as b_, type QueryTicketDefinitionsResponse as ba, type PagingMetadataV2 as bb, type Cursors as bc, type QueryAvailableTicketDefinitionsRequest as bd, type CountTicketDefinitionsRequest as be, type FacetCounts as bf, type CountAvailableTicketDefinitionsRequest as bg, type BulkDeleteTicketDefinitionsByFilterRequest as bh, type BulkDeleteTicketDefinitionsByFilterResponse as bi, type ChangeCurrencyRequest as bj, type ChangeCurrencyResponse as bk, type BulkCopyTicketDefinitionsByEventIdRequest as bl, type BulkCopyTicketDefinitionsByEventIdResponse as bm, type CopiedTicketDefinition as bn, type UpdateFeeTypesBasedOnSettingsRequest as bo, type UpdateFeeTypesBasedOnSettingsResponse as bp, type EventDeleted as bq, type Empty as br, type EventCanceled as bs, type EventEnded as bt, type EventCreated as bu, type EventsLocation as bv, type MapCoordinates as bw, type Address as bx, type AddressStreetOneOf as by, type StreetAddress as bz, type QueryV2 as c, type ImageDataStyles as c$, type Negative as c0, type CheckoutFormMessages as c1, type ResponseConfirmation as c2, type RegistrationClosedMessages as c3, type TicketsUnavailableMessages as c4, type Dashboard as c5, type RsvpSummary as c6, type TicketingSummary as c7, type GuestListConfig as c8, type Feed as c9, type Link as cA, type LinkDataOneOf as cB, type Rel as cC, type CodeBlockData as cD, type TextStyle as cE, type DividerData as cF, type FileData as cG, type FileSource as cH, type FileSourceDataOneOf as cI, type PDFSettings as cJ, type GalleryData as cK, type Media as cL, type Image as cM, type Video as cN, type Item as cO, type ItemDataOneOf as cP, type GalleryOptions as cQ, type Layout as cR, type ItemStyle as cS, type Thumbnails as cT, type GIFData as cU, type GIF as cV, type HeadingData as cW, type HTMLData as cX, type HTMLDataDataOneOf as cY, type ImageData as cZ, type StylesBorder as c_, type OnlineConferencing as ca, type OnlineConferencingConfig as cb, type OnlineConferencingSession as cc, type SeoSettings as cd, type SeoSchema as ce, type Keyword as cf, type Tag as cg, type Settings as ch, type Agenda as ci, type Category as cj, type CategoryCounts as ck, type EventDisplaySettings as cl, type LabellingSettings as cm, type RichContent as cn, type Node as co, type NodeDataOneOf as cp, type NodeStyle as cq, type ButtonData as cr, type Border as cs, type Colors as ct, type PluginContainerData as cu, type PluginContainerDataWidth as cv, type PluginContainerDataWidthDataOneOf as cw, type Spoiler as cx, type Height as cy, type Styles as cz, type QueryAvailableTicketDefinitionsOptions as d, type ActionEvent as d$, type LinkPreviewData as d0, type LinkPreviewDataStyles as d1, type MapData as d2, type MapSettings as d3, type ParagraphData as d4, type PollData as d5, type Permissions as d6, type Option as d7, type PollSettings as d8, type PollLayout as d9, type Oembed as dA, type CollapsibleListData as dB, type TableData as dC, type Dimensions as dD, type TableCellData as dE, type CellStyle as dF, type BorderColors as dG, type ListValue as dH, type AudioData as dI, type OrderedListData as dJ, type BulletedListData as dK, type BlockquoteData as dL, type CaptionData as dM, type LayoutCellData as dN, type Metadata as dO, type DocumentStyle as dP, type TextNodeStyle as dQ, type Badge as dR, type EventUpdated as dS, type SeatingPlanCategoriesSummaryUpdated as dT, type CategoryDetails as dU, type DomainEvent as dV, type DomainEventBodyOneOf as dW, type EntityCreatedEvent as dX, type RestoreInfo as dY, type EntityUpdatedEvent as dZ, type EntityDeletedEvent as d_, type OptionLayout as da, type Gradient as db, type Background as dc, type BackgroundBackgroundOneOf as dd, type PollDesign as de, type OptionDesign as df, type Poll as dg, type PollDataLayout as dh, type Design as di, type TextData as dj, type Decoration as dk, type DecorationDataOneOf as dl, type AnchorData as dm, type ColorData as dn, type LinkData as dp, type MentionData as dq, type FontSizeData as dr, type SpoilerData as ds, type AppEmbedData as dt, type AppEmbedDataAppDataOneOf as du, type BookingData as dv, type EventData as dw, type VideoData as dx, type PlaybackOptions as dy, type EmbedData as dz, type QueryAvailableTicketDefinitionsResponse as e, type MetaSiteSpecialEvent as e0, type MetaSiteSpecialEventPayloadOneOf as e1, type Asset as e2, type SiteCreated as e3, type SiteTransferred as e4, type SiteDeleted as e5, type DeleteContext as e6, type SiteUndeleted as e7, type SitePublished as e8, type SiteUnpublished as e9, type EventTicketingSummary as eA, type ReservationCreated as eB, type TicketQuantity as eC, type ReservationCount as eD, type ReservationUpdated as eE, type BaseEventMetadata as eF, type EventMetadata as eG, type ReorderTicketDefinitionsOptionsReferenceDefinitionOneOf as eH, type TicketDefinitionsQueryResult as eI, type SiteMarkedAsTemplate as ea, type SiteMarkedAsWixSite as eb, type ServiceProvisioned as ec, type ServiceRemoved as ed, type SiteRenamed as ee, type SiteHardDeleted as ef, type NamespaceChanged as eg, type StudioAssigned as eh, type StudioUnassigned as ei, type SiteUrlChanged as ej, type SitePurgedExternally as ek, type OdeditorAssigned as el, type OdeditorUnassigned as em, type PicassoAssigned as en, type PicassoUnassigned as eo, type GetTicketDefinitionFromTrashBinRequest as ep, type GetTicketDefinitionFromTrashBinResponse as eq, type ScheduleLegacyTimeCapsuleTaskRequest as er, type MessageEnvelope as es, type IdentificationData as et, type IdentificationDataIdOneOf as eu, type GetTicketDefinitionSummaryRequest as ev, type GetTicketDefinitionSummaryResponse as ew, type TicketDefinitionSummary as ex, type ListEventTicketingSummaryRequest as ey, type ListEventTicketingSummaryResponse as ez, type CountTicketDefinitionsOptions as f, type CountTicketDefinitionsResponse as g, type CountAvailableTicketDefinitionsOptions as h, type CountAvailableTicketDefinitionsResponse as i, type ChangeCurrencyOptions as j, type TicketDefinitionCreatedEnvelope as k, type TicketDefinitionDeletedEnvelope as l, type TicketDefinitionSaleEndedEnvelope as m, type TicketDefinitionSalePeriodUpdatedEnvelope as n, type TicketDefinitionSaleStartedEnvelope as o, type TicketDefinitionUpdatedEnvelope as p, SubdivisionSubdivisionType as q, RecurrenceStatusStatus as r, Status as s, Field as t, SortOrder as u, LocationLocationType as v, SubdivisionType as w, EventStatus as x, EventType as y, RegistrationStatus as z };
|
|
5075
|
+
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, 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 CalendarLinks, type CaptionData, type Category, type CategoryCounts, type CategoryDetails, CategoryStateState, type CategoryStateStateWithLiterals, type CellStyle, type ChangeCurrencyApplicationErrors, type ChangeCurrencyOptions, type ChangeCurrencyRequest, type ChangeCurrencyResponse, type CheckoutFormMessages, 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, 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 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, 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, type Layout, type LayoutCellData, LayoutType, type LayoutTypeWithLiterals, 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, 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 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, type ResponseConfirmation, type RestoreInfo, type RichContent, type RsvpCollection, type RsvpCollectionConfig, 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, 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 TicketsUnavailableMessages, Type, type TypeWithLiterals, type URI, 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 };
|