@wix/events 1.0.363 → 1.0.364

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wix/events",
3
- "version": "1.0.363",
3
+ "version": "1.0.364",
4
4
  "publishConfig": {
5
5
  "registry": "https://registry.npmjs.org/",
6
6
  "access": "public"
@@ -23,9 +23,9 @@
23
23
  "dependencies": {
24
24
  "@wix/events_categories": "1.0.55",
25
25
  "@wix/events_forms": "1.0.57",
26
- "@wix/events_guests": "1.0.84",
27
- "@wix/events_notifications": "1.0.44",
28
- "@wix/events_orders": "1.0.67",
26
+ "@wix/events_guests": "1.0.85",
27
+ "@wix/events_notifications": "1.0.45",
28
+ "@wix/events_orders": "1.0.68",
29
29
  "@wix/events_policies": "1.0.55",
30
30
  "@wix/events_ricos": "1.0.28",
31
31
  "@wix/events_rsvp": "1.0.58",
@@ -33,8 +33,8 @@
33
33
  "@wix/events_schedule": "1.0.47",
34
34
  "@wix/events_schedule-bookmarks": "1.0.43",
35
35
  "@wix/events_staff-members": "1.0.28",
36
- "@wix/events_ticket-definitions": "1.0.60",
37
- "@wix/events_ticket-definitions-v-2": "1.0.79",
36
+ "@wix/events_ticket-definitions": "1.0.61",
37
+ "@wix/events_ticket-definitions-v-2": "1.0.80",
38
38
  "@wix/events_tickets": "1.0.54",
39
39
  "@wix/events_wix-events-v-2": "1.0.69"
40
40
  },
@@ -61,5 +61,5 @@
61
61
  "fqdn": ""
62
62
  }
63
63
  },
64
- "falconPackageHash": "ba08452f64f3929a80cdb167207ba42bfff611d5dab698ff9b956b29"
64
+ "falconPackageHash": "aaed2cbf21a9f278f314da2025515ee5e2b2f15341fddf55d54b7ce6"
65
65
  }
@@ -1037,7 +1037,7 @@ interface Invoice$2 {
1037
1037
  * 1. Total prices of all items in the cart are calculated.
1038
1038
  * 2. Discount is subtracted from the cart (if applicable).
1039
1039
  * 3. Tax is added (if applicable).
1040
- * 4. Wix service fee is added.
1040
+ * 4. Wix ticket service fee is added.
1041
1041
  */
1042
1042
  grandTotal?: Money$8;
1043
1043
  /**
@@ -1182,7 +1182,7 @@ interface Fee$2 {
1182
1182
  amount?: Money$8;
1183
1183
  }
1184
1184
  declare enum FeeName$2 {
1185
- /** Wix service fee charges applied to the line item. */
1185
+ /** Wix ticket service fee charges applied to the line item. */
1186
1186
  WIX_FEE = "WIX_FEE"
1187
1187
  }
1188
1188
  declare enum FeeType$3 {
@@ -1862,10 +1862,6 @@ interface GuestCreatedEnvelope {
1862
1862
  entity: EventGuest;
1863
1863
  metadata: EventMetadata$7;
1864
1864
  }
1865
- interface GuestUpdatedEnvelope {
1866
- entity: EventGuest;
1867
- metadata: EventMetadata$7;
1868
- }
1869
1865
  interface GuestDeletedEnvelope {
1870
1866
  entity: EventGuest;
1871
1867
  metadata: EventMetadata$7;
@@ -1886,6 +1882,10 @@ interface GuestOrderCanceledEnvelope {
1886
1882
  data: GuestOrderCanceled;
1887
1883
  metadata: EventMetadata$7;
1888
1884
  }
1885
+ interface GuestUpdatedEnvelope {
1886
+ entity: EventGuest;
1887
+ metadata: EventMetadata$7;
1888
+ }
1889
1889
  interface QueryEventGuestsOptions {
1890
1890
  /** Predefined sets of fields to return. */
1891
1891
  fields?: RequestedFieldsEnumRequestedFields[] | undefined;
@@ -1966,12 +1966,12 @@ interface QueryGuestsSignature {
1966
1966
  (options?: QueryEventGuestsOptions | undefined): GuestsQueryBuilder;
1967
1967
  }
1968
1968
  declare const onGuestCreated$1: EventDefinition<GuestCreatedEnvelope, "wix.events.guests.v1.guest_created">;
1969
- declare const onGuestUpdated$1: EventDefinition<GuestUpdatedEnvelope, "wix.events.guests.v1.guest_updated">;
1970
1969
  declare const onGuestDeleted$1: EventDefinition<GuestDeletedEnvelope, "wix.events.guests.v1.guest_deleted">;
1971
1970
  declare const onGuestCheckedIn$1: EventDefinition<GuestCheckedInEnvelope, "wix.events.guests.v1.guest_guest_checked_in">;
1972
1971
  declare const onGuestEventCanceled$1: EventDefinition<GuestEventCanceledEnvelope, "wix.events.guests.v1.guest_guest_event_canceled">;
1973
1972
  declare const onGuestEventStarts$1: EventDefinition<GuestEventStartsEnvelope, "wix.events.guests.v1.guest_guest_event_starts">;
1974
1973
  declare const onGuestOrderCanceled$1: EventDefinition<GuestOrderCanceledEnvelope, "wix.events.guests.v1.guest_guest_order_canceled">;
1974
+ declare const onGuestUpdated$1: EventDefinition<GuestUpdatedEnvelope, "wix.events.guests.v1.guest_updated">;
1975
1975
 
1976
1976
  declare function createEventModule$c<T extends EventDefinition<any, string>>(eventDefinition: T): BuildEventDefinition<T> & T;
1977
1977
 
@@ -1983,12 +1983,6 @@ type _publicOnGuestCreatedType = typeof onGuestCreated$1;
1983
1983
  */
1984
1984
  declare const onGuestCreated: ReturnType<typeof createEventModule$c<_publicOnGuestCreatedType>>;
1985
1985
 
1986
- type _publicOnGuestUpdatedType = typeof onGuestUpdated$1;
1987
- /**
1988
- * Triggered when a guest is updated. This webhook always fires together with [Event Guest Created](https://dev.wix.com/docs/rest/business-solutions/events/event-guests/event-guest-created) and [Event Guest Deleted](https://dev.wix.com/docs/rest/business-solutions/events/event-guests/event-guest-deleted) webhooks. When calling it, it might be triggered twice - make sure to explicitly add code to make sure parts of your code only run once.
1989
- */
1990
- declare const onGuestUpdated: ReturnType<typeof createEventModule$c<_publicOnGuestUpdatedType>>;
1991
-
1992
1986
  type _publicOnGuestDeletedType = typeof onGuestDeleted$1;
1993
1987
  /**
1994
1988
  * Triggered when a guest is deleted.
@@ -2013,6 +2007,12 @@ type _publicOnGuestOrderCanceledType = typeof onGuestOrderCanceled$1;
2013
2007
  /** */
2014
2008
  declare const onGuestOrderCanceled: ReturnType<typeof createEventModule$c<_publicOnGuestOrderCanceledType>>;
2015
2009
 
2010
+ type _publicOnGuestUpdatedType = typeof onGuestUpdated$1;
2011
+ /**
2012
+ * Triggered when a guest is updated. This webhook always fires together with [Event Guest Created](https://dev.wix.com/docs/rest/business-solutions/events/event-guests/event-guest-created) and [Event Guest Deleted](https://dev.wix.com/docs/rest/business-solutions/events/event-guests/event-guest-deleted) webhooks. When calling it, it might be triggered twice - make sure to explicitly add code to make sure parts of your code only run once.
2013
+ */
2014
+ declare const onGuestUpdated: ReturnType<typeof createEventModule$c<_publicOnGuestUpdatedType>>;
2015
+
2016
2016
  type context$f_AttendanceStatus = AttendanceStatus;
2017
2017
  declare const context$f_AttendanceStatus: typeof AttendanceStatus;
2018
2018
  type context$f_ContactEventStatusUpdated = ContactEventStatusUpdated;
@@ -3501,7 +3501,7 @@ interface Invoice$1 {
3501
3501
  * 1. Total prices of all items in the cart are calculated.
3502
3502
  * 2. Discount is subtracted from the cart (if applicable).
3503
3503
  * 3. Tax is added (if applicable).
3504
- * 4. Wix service fee is added.
3504
+ * 4. Wix ticket service fee is added.
3505
3505
  */
3506
3506
  grandTotal?: Money$7;
3507
3507
  /**
@@ -3627,7 +3627,7 @@ interface Fee$1 {
3627
3627
  amount?: Money$7;
3628
3628
  }
3629
3629
  declare enum FeeName$1 {
3630
- /** Wix service fee charges applied to the line item. */
3630
+ /** Wix ticket service fee charges applied to the line item. */
3631
3631
  WIX_FEE = "WIX_FEE"
3632
3632
  }
3633
3633
  declare enum FeeType$2 {
@@ -8616,7 +8616,7 @@ interface Invoice {
8616
8616
  * 1. Total prices of all items in the cart are calculated.
8617
8617
  * 2. Discount is subtracted from the cart (if applicable).
8618
8618
  * 3. Tax is added (if applicable).
8619
- * 4. Wix service fee is added.
8619
+ * 4. Wix ticket service fee is added.
8620
8620
  */
8621
8621
  grandTotal?: Money$5;
8622
8622
  /**
@@ -8750,7 +8750,7 @@ interface Fee {
8750
8750
  amount?: Money$5;
8751
8751
  }
8752
8752
  declare enum FeeName {
8753
- /** Wix service fee charges applied to the line item. */
8753
+ /** Wix ticket service fee charges applied to the line item. */
8754
8754
  WIX_FEE = "WIX_FEE"
8755
8755
  }
8756
8756
  declare enum FeeType$1 {
@@ -15170,7 +15170,7 @@ interface TicketDefinition$1 {
15170
15170
  /** Event ID associated with the ticket. */
15171
15171
  eventId?: string;
15172
15172
  /**
15173
- * Configuration of the fixed-rate Wix service fee that is applied at checkout to each ticket sold.
15173
+ * Configuration of the fixed-rate Wix ticket service fee that is applied at checkout to each ticket sold.
15174
15174
  * @readonly
15175
15175
  */
15176
15176
  wixFeeConfig?: WixFeeConfig;
@@ -15537,7 +15537,7 @@ interface TicketDefinitionData {
15537
15537
  policy?: string | null;
15538
15538
  /** Whether this ticket type is hidden to customers and cannot be purchased. */
15539
15539
  hidden?: boolean;
15540
- /** Configuration of the fixed-rate Wix service fee that is applied to each ticket sold. */
15540
+ /** Configuration of the fixed-rate Wix ticket service fee that is applied to each ticket sold. */
15541
15541
  wixFeeConfig?: WixFeeConfig;
15542
15542
  /** Ticket sale period. */
15543
15543
  salePeriod?: TicketSalePeriod;
@@ -23127,11 +23127,11 @@ declare enum PricingTypeEnumType {
23127
23127
  declare enum Type {
23128
23128
  /** Unknown fee type. */
23129
23129
  UNKNOWN_FEE_TYPE = "UNKNOWN_FEE_TYPE",
23130
- /** The fee is deducted from the ticket price for a seller. For example, if you're selling tickets for $10, then a service fee of $0.25 will be deducted from the price and you'll get $9.75. */
23130
+ /** The fee is deducted from the ticket price for a seller. For example, if you're selling tickets for $10, then a ticket service fee of $0.25 will be deducted from the price and you'll get $9.75. */
23131
23131
  FEE_INCLUDED = "FEE_INCLUDED",
23132
- /** The fee is shown in addition to the ticket price at checkout and a guest pays the fee. For example, if you sell tickets for $10, a customer will see a service fee of $0.25 and will pay $10.25 in total. */
23132
+ /** The fee is shown in addition to the ticket price at checkout and a guest pays the fee. For example, if you sell tickets for $10, a customer will see a ticket service fee of $0.25 and will pay $10.25 in total. */
23133
23133
  FEE_ADDED_AT_CHECKOUT = "FEE_ADDED_AT_CHECKOUT",
23134
- /** Service fee is not collected. Available only for free tickets and legacy users. */
23134
+ /** Ticket service fee is not collected. Available only for free tickets and legacy users. */
23135
23135
  NO_FEE = "NO_FEE"
23136
23136
  }
23137
23137
  declare enum SaleStatusEnumStatus {
@@ -25178,6 +25178,21 @@ interface SiteMarkedAsTemplate {
25178
25178
  }
25179
25179
  interface SiteMarkedAsWixSite {
25180
25180
  }
25181
+ /**
25182
+ * Represents a service provisioned a site.
25183
+ *
25184
+ * Note on `origin_instance_id`:
25185
+ * There is no guarantee that you will be able to find a meta site using `origin_instance_id`.
25186
+ * This is because of the following scenario:
25187
+ *
25188
+ * Imagine you have a template where a third-party application (TPA) includes some stub data,
25189
+ * such as a product catalog. When you create a site from this template, you inherit this
25190
+ * default product catalog. However, if the template's product catalog is modified,
25191
+ * your site will retain the catalog as it was at the time of site creation. This ensures that
25192
+ * your site remains consistent with what you initially received and does not include any
25193
+ * changes made to the original template afterward.
25194
+ * To ensure this, the TPA on the template gets a new instance_id.
25195
+ */
25181
25196
  interface ServiceProvisioned {
25182
25197
  /** Either UUID or EmbeddedServiceType. */
25183
25198
  appDefId?: string;
@@ -1037,7 +1037,7 @@ interface Invoice$2 {
1037
1037
  * 1. Total prices of all items in the cart are calculated.
1038
1038
  * 2. Discount is subtracted from the cart (if applicable).
1039
1039
  * 3. Tax is added (if applicable).
1040
- * 4. Wix service fee is added.
1040
+ * 4. Wix ticket service fee is added.
1041
1041
  */
1042
1042
  grandTotal?: Money$8;
1043
1043
  /**
@@ -1182,7 +1182,7 @@ interface Fee$2 {
1182
1182
  amount?: Money$8;
1183
1183
  }
1184
1184
  declare enum FeeName$2 {
1185
- /** Wix service fee charges applied to the line item. */
1185
+ /** Wix ticket service fee charges applied to the line item. */
1186
1186
  WIX_FEE = "WIX_FEE"
1187
1187
  }
1188
1188
  declare enum FeeType$3 {
@@ -1862,10 +1862,6 @@ interface GuestCreatedEnvelope {
1862
1862
  entity: EventGuest;
1863
1863
  metadata: EventMetadata$7;
1864
1864
  }
1865
- interface GuestUpdatedEnvelope {
1866
- entity: EventGuest;
1867
- metadata: EventMetadata$7;
1868
- }
1869
1865
  interface GuestDeletedEnvelope {
1870
1866
  entity: EventGuest;
1871
1867
  metadata: EventMetadata$7;
@@ -1886,6 +1882,10 @@ interface GuestOrderCanceledEnvelope {
1886
1882
  data: GuestOrderCanceled;
1887
1883
  metadata: EventMetadata$7;
1888
1884
  }
1885
+ interface GuestUpdatedEnvelope {
1886
+ entity: EventGuest;
1887
+ metadata: EventMetadata$7;
1888
+ }
1889
1889
  interface QueryEventGuestsOptions {
1890
1890
  /** Predefined sets of fields to return. */
1891
1891
  fields?: RequestedFieldsEnumRequestedFields[] | undefined;
@@ -1966,12 +1966,12 @@ interface QueryGuestsSignature {
1966
1966
  (options?: QueryEventGuestsOptions | undefined): GuestsQueryBuilder;
1967
1967
  }
1968
1968
  declare const onGuestCreated$1: EventDefinition<GuestCreatedEnvelope, "wix.events.guests.v1.guest_created">;
1969
- declare const onGuestUpdated$1: EventDefinition<GuestUpdatedEnvelope, "wix.events.guests.v1.guest_updated">;
1970
1969
  declare const onGuestDeleted$1: EventDefinition<GuestDeletedEnvelope, "wix.events.guests.v1.guest_deleted">;
1971
1970
  declare const onGuestCheckedIn$1: EventDefinition<GuestCheckedInEnvelope, "wix.events.guests.v1.guest_guest_checked_in">;
1972
1971
  declare const onGuestEventCanceled$1: EventDefinition<GuestEventCanceledEnvelope, "wix.events.guests.v1.guest_guest_event_canceled">;
1973
1972
  declare const onGuestEventStarts$1: EventDefinition<GuestEventStartsEnvelope, "wix.events.guests.v1.guest_guest_event_starts">;
1974
1973
  declare const onGuestOrderCanceled$1: EventDefinition<GuestOrderCanceledEnvelope, "wix.events.guests.v1.guest_guest_order_canceled">;
1974
+ declare const onGuestUpdated$1: EventDefinition<GuestUpdatedEnvelope, "wix.events.guests.v1.guest_updated">;
1975
1975
 
1976
1976
  declare function createEventModule$c<T extends EventDefinition<any, string>>(eventDefinition: T): BuildEventDefinition<T> & T;
1977
1977
 
@@ -1983,12 +1983,6 @@ type _publicOnGuestCreatedType = typeof onGuestCreated$1;
1983
1983
  */
1984
1984
  declare const onGuestCreated: ReturnType<typeof createEventModule$c<_publicOnGuestCreatedType>>;
1985
1985
 
1986
- type _publicOnGuestUpdatedType = typeof onGuestUpdated$1;
1987
- /**
1988
- * Triggered when a guest is updated. This webhook always fires together with [Event Guest Created](https://dev.wix.com/docs/rest/business-solutions/events/event-guests/event-guest-created) and [Event Guest Deleted](https://dev.wix.com/docs/rest/business-solutions/events/event-guests/event-guest-deleted) webhooks. When calling it, it might be triggered twice - make sure to explicitly add code to make sure parts of your code only run once.
1989
- */
1990
- declare const onGuestUpdated: ReturnType<typeof createEventModule$c<_publicOnGuestUpdatedType>>;
1991
-
1992
1986
  type _publicOnGuestDeletedType = typeof onGuestDeleted$1;
1993
1987
  /**
1994
1988
  * Triggered when a guest is deleted.
@@ -2013,6 +2007,12 @@ type _publicOnGuestOrderCanceledType = typeof onGuestOrderCanceled$1;
2013
2007
  /** */
2014
2008
  declare const onGuestOrderCanceled: ReturnType<typeof createEventModule$c<_publicOnGuestOrderCanceledType>>;
2015
2009
 
2010
+ type _publicOnGuestUpdatedType = typeof onGuestUpdated$1;
2011
+ /**
2012
+ * Triggered when a guest is updated. This webhook always fires together with [Event Guest Created](https://dev.wix.com/docs/rest/business-solutions/events/event-guests/event-guest-created) and [Event Guest Deleted](https://dev.wix.com/docs/rest/business-solutions/events/event-guests/event-guest-deleted) webhooks. When calling it, it might be triggered twice - make sure to explicitly add code to make sure parts of your code only run once.
2013
+ */
2014
+ declare const onGuestUpdated: ReturnType<typeof createEventModule$c<_publicOnGuestUpdatedType>>;
2015
+
2016
2016
  type index_d$f_AttendanceStatus = AttendanceStatus;
2017
2017
  declare const index_d$f_AttendanceStatus: typeof AttendanceStatus;
2018
2018
  type index_d$f_ContactEventStatusUpdated = ContactEventStatusUpdated;
@@ -3501,7 +3501,7 @@ interface Invoice$1 {
3501
3501
  * 1. Total prices of all items in the cart are calculated.
3502
3502
  * 2. Discount is subtracted from the cart (if applicable).
3503
3503
  * 3. Tax is added (if applicable).
3504
- * 4. Wix service fee is added.
3504
+ * 4. Wix ticket service fee is added.
3505
3505
  */
3506
3506
  grandTotal?: Money$7;
3507
3507
  /**
@@ -3627,7 +3627,7 @@ interface Fee$1 {
3627
3627
  amount?: Money$7;
3628
3628
  }
3629
3629
  declare enum FeeName$1 {
3630
- /** Wix service fee charges applied to the line item. */
3630
+ /** Wix ticket service fee charges applied to the line item. */
3631
3631
  WIX_FEE = "WIX_FEE"
3632
3632
  }
3633
3633
  declare enum FeeType$2 {
@@ -8616,7 +8616,7 @@ interface Invoice {
8616
8616
  * 1. Total prices of all items in the cart are calculated.
8617
8617
  * 2. Discount is subtracted from the cart (if applicable).
8618
8618
  * 3. Tax is added (if applicable).
8619
- * 4. Wix service fee is added.
8619
+ * 4. Wix ticket service fee is added.
8620
8620
  */
8621
8621
  grandTotal?: Money$5;
8622
8622
  /**
@@ -8750,7 +8750,7 @@ interface Fee {
8750
8750
  amount?: Money$5;
8751
8751
  }
8752
8752
  declare enum FeeName {
8753
- /** Wix service fee charges applied to the line item. */
8753
+ /** Wix ticket service fee charges applied to the line item. */
8754
8754
  WIX_FEE = "WIX_FEE"
8755
8755
  }
8756
8756
  declare enum FeeType$1 {
@@ -15170,7 +15170,7 @@ interface TicketDefinition$1 {
15170
15170
  /** Event ID associated with the ticket. */
15171
15171
  eventId?: string;
15172
15172
  /**
15173
- * Configuration of the fixed-rate Wix service fee that is applied at checkout to each ticket sold.
15173
+ * Configuration of the fixed-rate Wix ticket service fee that is applied at checkout to each ticket sold.
15174
15174
  * @readonly
15175
15175
  */
15176
15176
  wixFeeConfig?: WixFeeConfig;
@@ -15537,7 +15537,7 @@ interface TicketDefinitionData {
15537
15537
  policy?: string | null;
15538
15538
  /** Whether this ticket type is hidden to customers and cannot be purchased. */
15539
15539
  hidden?: boolean;
15540
- /** Configuration of the fixed-rate Wix service fee that is applied to each ticket sold. */
15540
+ /** Configuration of the fixed-rate Wix ticket service fee that is applied to each ticket sold. */
15541
15541
  wixFeeConfig?: WixFeeConfig;
15542
15542
  /** Ticket sale period. */
15543
15543
  salePeriod?: TicketSalePeriod;
@@ -23127,11 +23127,11 @@ declare enum PricingTypeEnumType {
23127
23127
  declare enum Type {
23128
23128
  /** Unknown fee type. */
23129
23129
  UNKNOWN_FEE_TYPE = "UNKNOWN_FEE_TYPE",
23130
- /** The fee is deducted from the ticket price for a seller. For example, if you're selling tickets for $10, then a service fee of $0.25 will be deducted from the price and you'll get $9.75. */
23130
+ /** The fee is deducted from the ticket price for a seller. For example, if you're selling tickets for $10, then a ticket service fee of $0.25 will be deducted from the price and you'll get $9.75. */
23131
23131
  FEE_INCLUDED = "FEE_INCLUDED",
23132
- /** The fee is shown in addition to the ticket price at checkout and a guest pays the fee. For example, if you sell tickets for $10, a customer will see a service fee of $0.25 and will pay $10.25 in total. */
23132
+ /** The fee is shown in addition to the ticket price at checkout and a guest pays the fee. For example, if you sell tickets for $10, a customer will see a ticket service fee of $0.25 and will pay $10.25 in total. */
23133
23133
  FEE_ADDED_AT_CHECKOUT = "FEE_ADDED_AT_CHECKOUT",
23134
- /** Service fee is not collected. Available only for free tickets and legacy users. */
23134
+ /** Ticket service fee is not collected. Available only for free tickets and legacy users. */
23135
23135
  NO_FEE = "NO_FEE"
23136
23136
  }
23137
23137
  declare enum SaleStatusEnumStatus {
@@ -25178,6 +25178,21 @@ interface SiteMarkedAsTemplate {
25178
25178
  }
25179
25179
  interface SiteMarkedAsWixSite {
25180
25180
  }
25181
+ /**
25182
+ * Represents a service provisioned a site.
25183
+ *
25184
+ * Note on `origin_instance_id`:
25185
+ * There is no guarantee that you will be able to find a meta site using `origin_instance_id`.
25186
+ * This is because of the following scenario:
25187
+ *
25188
+ * Imagine you have a template where a third-party application (TPA) includes some stub data,
25189
+ * such as a product catalog. When you create a site from this template, you inherit this
25190
+ * default product catalog. However, if the template's product catalog is modified,
25191
+ * your site will retain the catalog as it was at the time of site creation. This ensures that
25192
+ * your site remains consistent with what you initially received and does not include any
25193
+ * changes made to the original template afterward.
25194
+ * To ensure this, the TPA on the template gets a new instance_id.
25195
+ */
25181
25196
  interface ServiceProvisioned {
25182
25197
  /** Either UUID or EmbeddedServiceType. */
25183
25198
  appDefId?: string;
@@ -4762,7 +4762,7 @@ interface Invoice$1 {
4762
4762
  * 1. Total prices of all items in the cart are calculated.
4763
4763
  * 2. Discount is subtracted from the cart (if applicable).
4764
4764
  * 3. Tax is added (if applicable).
4765
- * 4. Wix service fee is added.
4765
+ * 4. Wix ticket service fee is added.
4766
4766
  */
4767
4767
  grandTotal?: Money$7;
4768
4768
  /**
@@ -4896,7 +4896,7 @@ interface Fee$1 {
4896
4896
  amount?: Money$7;
4897
4897
  }
4898
4898
  declare enum FeeName$1 {
4899
- /** Wix service fee charges applied to the line item. */
4899
+ /** Wix ticket service fee charges applied to the line item. */
4900
4900
  WIX_FEE = "WIX_FEE"
4901
4901
  }
4902
4902
  declare enum FeeType$3 {
@@ -6074,7 +6074,7 @@ interface Invoice {
6074
6074
  * 1. Total prices of all items in the cart are calculated.
6075
6075
  * 2. Discount is subtracted from the cart (if applicable).
6076
6076
  * 3. Tax is added (if applicable).
6077
- * 4. Wix service fee is added.
6077
+ * 4. Wix ticket service fee is added.
6078
6078
  */
6079
6079
  grandTotal?: Money$6;
6080
6080
  /**
@@ -6208,7 +6208,7 @@ interface Fee {
6208
6208
  amount?: Money$6;
6209
6209
  }
6210
6210
  declare enum FeeName {
6211
- /** Wix service fee charges applied to the line item. */
6211
+ /** Wix ticket service fee charges applied to the line item. */
6212
6212
  WIX_FEE = "WIX_FEE"
6213
6213
  }
6214
6214
  declare enum FeeType$2 {
@@ -12733,7 +12733,7 @@ interface TicketDefinition$2 {
12733
12733
  /** Event ID associated with the ticket. */
12734
12734
  eventId?: string;
12735
12735
  /**
12736
- * Configuration of the fixed-rate Wix service fee that is applied at checkout to each ticket sold.
12736
+ * Configuration of the fixed-rate Wix ticket service fee that is applied at checkout to each ticket sold.
12737
12737
  * @readonly
12738
12738
  */
12739
12739
  wixFeeConfig?: WixFeeConfig;
@@ -13092,7 +13092,7 @@ interface TicketDefinitionData {
13092
13092
  policy?: string | null;
13093
13093
  /** Whether this ticket type is hidden to customers and cannot be purchased. */
13094
13094
  hidden?: boolean;
13095
- /** Configuration of the fixed-rate Wix service fee that is applied to each ticket sold. */
13095
+ /** Configuration of the fixed-rate Wix ticket service fee that is applied to each ticket sold. */
13096
13096
  wixFeeConfig?: WixFeeConfig;
13097
13097
  /** Ticket sale period. */
13098
13098
  salePeriod?: TicketSalePeriod;
@@ -18701,11 +18701,11 @@ declare enum PricingTypeEnumType$1 {
18701
18701
  declare enum Type$1 {
18702
18702
  /** Unknown fee type. */
18703
18703
  UNKNOWN_FEE_TYPE = "UNKNOWN_FEE_TYPE",
18704
- /** The fee is deducted from the ticket price for a seller. For example, if you're selling tickets for $10, then a service fee of $0.25 will be deducted from the price and you'll get $9.75. */
18704
+ /** The fee is deducted from the ticket price for a seller. For example, if you're selling tickets for $10, then a ticket service fee of $0.25 will be deducted from the price and you'll get $9.75. */
18705
18705
  FEE_INCLUDED = "FEE_INCLUDED",
18706
- /** The fee is shown in addition to the ticket price at checkout and a guest pays the fee. For example, if you sell tickets for $10, a customer will see a service fee of $0.25 and will pay $10.25 in total. */
18706
+ /** The fee is shown in addition to the ticket price at checkout and a guest pays the fee. For example, if you sell tickets for $10, a customer will see a ticket service fee of $0.25 and will pay $10.25 in total. */
18707
18707
  FEE_ADDED_AT_CHECKOUT = "FEE_ADDED_AT_CHECKOUT",
18708
- /** Service fee is not collected. Available only for free tickets and legacy users. */
18708
+ /** Ticket service fee is not collected. Available only for free tickets and legacy users. */
18709
18709
  NO_FEE = "NO_FEE"
18710
18710
  }
18711
18711
  declare enum SaleStatusEnumStatus$1 {
@@ -19369,11 +19369,11 @@ declare enum PricingTypeEnumType {
19369
19369
  declare enum Type {
19370
19370
  /** Unknown fee type. */
19371
19371
  UNKNOWN_FEE_TYPE = "UNKNOWN_FEE_TYPE",
19372
- /** The fee is deducted from the ticket price for a seller. For example, if you're selling tickets for $10, then a service fee of $0.25 will be deducted from the price and you'll get $9.75. */
19372
+ /** The fee is deducted from the ticket price for a seller. For example, if you're selling tickets for $10, then a ticket service fee of $0.25 will be deducted from the price and you'll get $9.75. */
19373
19373
  FEE_INCLUDED = "FEE_INCLUDED",
19374
- /** The fee is shown in addition to the ticket price at checkout and a guest pays the fee. For example, if you sell tickets for $10, a customer will see a service fee of $0.25 and will pay $10.25 in total. */
19374
+ /** The fee is shown in addition to the ticket price at checkout and a guest pays the fee. For example, if you sell tickets for $10, a customer will see a ticket service fee of $0.25 and will pay $10.25 in total. */
19375
19375
  FEE_ADDED_AT_CHECKOUT = "FEE_ADDED_AT_CHECKOUT",
19376
- /** Service fee is not collected. Available only for free tickets and legacy users. */
19376
+ /** Ticket service fee is not collected. Available only for free tickets and legacy users. */
19377
19377
  NO_FEE = "NO_FEE"
19378
19378
  }
19379
19379
  declare enum SaleStatusEnumStatus {