@wix/events 1.0.362 → 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.362",
3
+ "version": "1.0.364",
4
4
  "publishConfig": {
5
5
  "registry": "https://registry.npmjs.org/",
6
6
  "access": "public"
@@ -22,21 +22,21 @@
22
22
  ],
23
23
  "dependencies": {
24
24
  "@wix/events_categories": "1.0.55",
25
- "@wix/events_forms": "1.0.56",
26
- "@wix/events_guests": "1.0.83",
27
- "@wix/events_notifications": "1.0.43",
28
- "@wix/events_orders": "1.0.66",
29
- "@wix/events_policies": "1.0.54",
30
- "@wix/events_ricos": "1.0.27",
31
- "@wix/events_rsvp": "1.0.57",
32
- "@wix/events_rsvp-v-2": "1.0.30",
25
+ "@wix/events_forms": "1.0.57",
26
+ "@wix/events_guests": "1.0.85",
27
+ "@wix/events_notifications": "1.0.45",
28
+ "@wix/events_orders": "1.0.68",
29
+ "@wix/events_policies": "1.0.55",
30
+ "@wix/events_ricos": "1.0.28",
31
+ "@wix/events_rsvp": "1.0.58",
32
+ "@wix/events_rsvp-v-2": "1.0.31",
33
33
  "@wix/events_schedule": "1.0.47",
34
34
  "@wix/events_schedule-bookmarks": "1.0.43",
35
- "@wix/events_staff-members": "1.0.27",
36
- "@wix/events_ticket-definitions": "1.0.60",
37
- "@wix/events_ticket-definitions-v-2": "1.0.78",
38
- "@wix/events_tickets": "1.0.53",
39
- "@wix/events_wix-events-v-2": "1.0.68"
35
+ "@wix/events_staff-members": "1.0.28",
36
+ "@wix/events_ticket-definitions": "1.0.61",
37
+ "@wix/events_ticket-definitions-v-2": "1.0.80",
38
+ "@wix/events_tickets": "1.0.54",
39
+ "@wix/events_wix-events-v-2": "1.0.69"
40
40
  },
41
41
  "devDependencies": {
42
42
  "glob": "^10.4.1",
@@ -61,5 +61,5 @@
61
61
  "fqdn": ""
62
62
  }
63
63
  },
64
- "falconPackageHash": "c58954f79623d6f373875287d6c4c0f1de42266291469e3dee5475bc"
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 {
@@ -1778,8 +1778,12 @@ interface StreetAddressNonNullableFields$3 {
1778
1778
  name: string;
1779
1779
  apt: string;
1780
1780
  }
1781
+ interface SubdivisionNonNullableFields$3 {
1782
+ name: string;
1783
+ }
1781
1784
  interface AddressNonNullableFields$3 {
1782
1785
  streetAddress?: StreetAddressNonNullableFields$3;
1786
+ subdivisions: SubdivisionNonNullableFields$3[];
1783
1787
  }
1784
1788
  interface FormattedAddressNonNullableFields$4 {
1785
1789
  formatted: string;
@@ -1858,10 +1862,6 @@ interface GuestCreatedEnvelope {
1858
1862
  entity: EventGuest;
1859
1863
  metadata: EventMetadata$7;
1860
1864
  }
1861
- interface GuestUpdatedEnvelope {
1862
- entity: EventGuest;
1863
- metadata: EventMetadata$7;
1864
- }
1865
1865
  interface GuestDeletedEnvelope {
1866
1866
  entity: EventGuest;
1867
1867
  metadata: EventMetadata$7;
@@ -1882,6 +1882,10 @@ interface GuestOrderCanceledEnvelope {
1882
1882
  data: GuestOrderCanceled;
1883
1883
  metadata: EventMetadata$7;
1884
1884
  }
1885
+ interface GuestUpdatedEnvelope {
1886
+ entity: EventGuest;
1887
+ metadata: EventMetadata$7;
1888
+ }
1885
1889
  interface QueryEventGuestsOptions {
1886
1890
  /** Predefined sets of fields to return. */
1887
1891
  fields?: RequestedFieldsEnumRequestedFields[] | undefined;
@@ -1962,12 +1966,12 @@ interface QueryGuestsSignature {
1962
1966
  (options?: QueryEventGuestsOptions | undefined): GuestsQueryBuilder;
1963
1967
  }
1964
1968
  declare const onGuestCreated$1: EventDefinition<GuestCreatedEnvelope, "wix.events.guests.v1.guest_created">;
1965
- declare const onGuestUpdated$1: EventDefinition<GuestUpdatedEnvelope, "wix.events.guests.v1.guest_updated">;
1966
1969
  declare const onGuestDeleted$1: EventDefinition<GuestDeletedEnvelope, "wix.events.guests.v1.guest_deleted">;
1967
1970
  declare const onGuestCheckedIn$1: EventDefinition<GuestCheckedInEnvelope, "wix.events.guests.v1.guest_guest_checked_in">;
1968
1971
  declare const onGuestEventCanceled$1: EventDefinition<GuestEventCanceledEnvelope, "wix.events.guests.v1.guest_guest_event_canceled">;
1969
1972
  declare const onGuestEventStarts$1: EventDefinition<GuestEventStartsEnvelope, "wix.events.guests.v1.guest_guest_event_starts">;
1970
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">;
1971
1975
 
1972
1976
  declare function createEventModule$c<T extends EventDefinition<any, string>>(eventDefinition: T): BuildEventDefinition<T> & T;
1973
1977
 
@@ -1979,12 +1983,6 @@ type _publicOnGuestCreatedType = typeof onGuestCreated$1;
1979
1983
  */
1980
1984
  declare const onGuestCreated: ReturnType<typeof createEventModule$c<_publicOnGuestCreatedType>>;
1981
1985
 
1982
- type _publicOnGuestUpdatedType = typeof onGuestUpdated$1;
1983
- /**
1984
- * 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.
1985
- */
1986
- declare const onGuestUpdated: ReturnType<typeof createEventModule$c<_publicOnGuestUpdatedType>>;
1987
-
1988
1986
  type _publicOnGuestDeletedType = typeof onGuestDeleted$1;
1989
1987
  /**
1990
1988
  * Triggered when a guest is deleted.
@@ -2009,6 +2007,12 @@ type _publicOnGuestOrderCanceledType = typeof onGuestOrderCanceled$1;
2009
2007
  /** */
2010
2008
  declare const onGuestOrderCanceled: ReturnType<typeof createEventModule$c<_publicOnGuestOrderCanceledType>>;
2011
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
+
2012
2016
  type context$f_AttendanceStatus = AttendanceStatus;
2013
2017
  declare const context$f_AttendanceStatus: typeof AttendanceStatus;
2014
2018
  type context$f_ContactEventStatusUpdated = ContactEventStatusUpdated;
@@ -2142,9 +2146,7 @@ declare enum EmailNotificationType {
2142
2146
  /** Triggered when resending ticket to ticket holder. */
2143
2147
  EMAIL_TICKET_CONFIRMATION = "EMAIL_TICKET_CONFIRMATION",
2144
2148
  /** Triggered when sending invoice. Currently only `enabled` flag update is supported. */
2145
- EMAIL_INVOICE = "EMAIL_INVOICE",
2146
- /** Triggered when order confirmation sending is delayed. Tickets are accessible via link. */
2147
- EMAIL_ORDER_CONFIRMATION_WITH_TICKETS_LINK = "EMAIL_ORDER_CONFIRMATION_WITH_TICKETS_LINK"
2149
+ EMAIL_INVOICE = "EMAIL_INVOICE"
2148
2150
  }
2149
2151
  interface EmailTemplate {
2150
2152
  /** Email subject. */
@@ -2574,6 +2576,10 @@ interface Address$9 extends AddressStreetOneOf$9 {
2574
2576
  formatted?: string | null;
2575
2577
  /** coordinates of the physical address */
2576
2578
  location?: AddressLocation$9;
2579
+ /** country full-name */
2580
+ countryFullname?: string | null;
2581
+ /** multi-level subdivisions from top to bottom */
2582
+ subdivisions?: Subdivision$9[];
2577
2583
  }
2578
2584
  /** @oneof */
2579
2585
  interface AddressStreetOneOf$9 {
@@ -3290,11 +3296,11 @@ interface Tag$4 {
3290
3296
  */
3291
3297
  type?: string;
3292
3298
  /**
3293
- * A `{'key':'value'}` pair object where each SEO tag property (`'name'`, `'content'`, `'rel'`, `'href'`) contains a value.
3294
- * For example: `{'name': 'description', 'content': 'the description itself'}`.
3299
+ * A `{"key": "value"}` pair object where each SEO tag property (`"name"`, `"content"`, `"rel"`, `"href"`) contains a value.
3300
+ * For example: `{"name": "description", "content": "the description itself"}`.
3295
3301
  */
3296
3302
  props?: Record<string, any> | null;
3297
- /** SEO tag meta data. For example, `{height: 300, width: 240}`. */
3303
+ /** SEO tag meta data. For example, `{"height": 300, "width": 240}`. */
3298
3304
  meta?: Record<string, any> | null;
3299
3305
  /** SEO tag inner content. For example, `<title> inner content </title>`. */
3300
3306
  children?: string;
@@ -3495,7 +3501,7 @@ interface Invoice$1 {
3495
3501
  * 1. Total prices of all items in the cart are calculated.
3496
3502
  * 2. Discount is subtracted from the cart (if applicable).
3497
3503
  * 3. Tax is added (if applicable).
3498
- * 4. Wix service fee is added.
3504
+ * 4. Wix ticket service fee is added.
3499
3505
  */
3500
3506
  grandTotal?: Money$7;
3501
3507
  /**
@@ -3621,7 +3627,7 @@ interface Fee$1 {
3621
3627
  amount?: Money$7;
3622
3628
  }
3623
3629
  declare enum FeeName$1 {
3624
- /** Wix service fee charges applied to the line item. */
3630
+ /** Wix ticket service fee charges applied to the line item. */
3625
3631
  WIX_FEE = "WIX_FEE"
3626
3632
  }
3627
3633
  declare enum FeeType$2 {
@@ -5304,11 +5310,6 @@ interface GetStaffMemberRequest {
5304
5310
  fieldsets?: Fieldset[];
5305
5311
  }
5306
5312
  declare enum Fieldset {
5307
- /**
5308
- * Includes join link.
5309
- * Deprecated, use LOGIN_LINK
5310
- */
5311
- JOIN_LINK = "JOIN_LINK",
5312
5313
  /** Includes login link. */
5313
5314
  LOGIN_LINK = "LOGIN_LINK"
5314
5315
  }
@@ -7266,6 +7267,10 @@ interface Address$8 extends AddressStreetOneOf$8 {
7266
7267
  formatted?: string | null;
7267
7268
  /** coordinates of the physical address */
7268
7269
  location?: AddressLocation$8;
7270
+ /** country full-name */
7271
+ countryFullname?: string | null;
7272
+ /** multi-level subdivisions from top to bottom */
7273
+ subdivisions?: Subdivision$8[];
7269
7274
  }
7270
7275
  /** @oneof */
7271
7276
  interface AddressStreetOneOf$8 {
@@ -7756,11 +7761,11 @@ interface Tag$3 {
7756
7761
  */
7757
7762
  type?: string;
7758
7763
  /**
7759
- * A `{'key':'value'}` pair object where each SEO tag property (`'name'`, `'content'`, `'rel'`, `'href'`) contains a value.
7760
- * For example: `{'name': 'description', 'content': 'the description itself'}`.
7764
+ * A `{"key": "value"}` pair object where each SEO tag property (`"name"`, `"content"`, `"rel"`, `"href"`) contains a value.
7765
+ * For example: `{"name": "description", "content": "the description itself"}`.
7761
7766
  */
7762
7767
  props?: Record<string, any> | null;
7763
- /** SEO tag meta data. For example, `{height: 300, width: 240}`. */
7768
+ /** SEO tag meta data. For example, `{"height": 300, "width": 240}`. */
7764
7769
  meta?: Record<string, any> | null;
7765
7770
  /** SEO tag inner content. For example, `<title> inner content </title>`. */
7766
7771
  children?: string;
@@ -8611,7 +8616,7 @@ interface Invoice {
8611
8616
  * 1. Total prices of all items in the cart are calculated.
8612
8617
  * 2. Discount is subtracted from the cart (if applicable).
8613
8618
  * 3. Tax is added (if applicable).
8614
- * 4. Wix service fee is added.
8619
+ * 4. Wix ticket service fee is added.
8615
8620
  */
8616
8621
  grandTotal?: Money$5;
8617
8622
  /**
@@ -8745,7 +8750,7 @@ interface Fee {
8745
8750
  amount?: Money$5;
8746
8751
  }
8747
8752
  declare enum FeeName {
8748
- /** Wix service fee charges applied to the line item. */
8753
+ /** Wix ticket service fee charges applied to the line item. */
8749
8754
  WIX_FEE = "WIX_FEE"
8750
8755
  }
8751
8756
  declare enum FeeType$1 {
@@ -9881,8 +9886,12 @@ interface StreetAddressNonNullableFields$2 {
9881
9886
  name: string;
9882
9887
  apt: string;
9883
9888
  }
9889
+ interface SubdivisionNonNullableFields$2 {
9890
+ name: string;
9891
+ }
9884
9892
  interface AddressNonNullableFields$2 {
9885
9893
  streetAddress?: StreetAddressNonNullableFields$2;
9894
+ subdivisions: SubdivisionNonNullableFields$2[];
9886
9895
  }
9887
9896
  interface FormattedAddressNonNullableFields$3 {
9888
9897
  formatted: string;
@@ -12276,6 +12285,10 @@ interface Address$6 extends AddressStreetOneOf$6 {
12276
12285
  formatted?: string | null;
12277
12286
  /** coordinates of the physical address */
12278
12287
  location?: AddressLocation$6;
12288
+ /** country full-name */
12289
+ countryFullname?: string | null;
12290
+ /** multi-level subdivisions from top to bottom */
12291
+ subdivisions?: Subdivision$6[];
12279
12292
  }
12280
12293
  /** @oneof */
12281
12294
  interface AddressStreetOneOf$6 {
@@ -13847,8 +13860,12 @@ interface StreetAddressNonNullableFields$1 {
13847
13860
  name: string;
13848
13861
  apt: string;
13849
13862
  }
13863
+ interface SubdivisionNonNullableFields$1 {
13864
+ name: string;
13865
+ }
13850
13866
  interface AddressNonNullableFields$1 {
13851
13867
  streetAddress?: StreetAddressNonNullableFields$1;
13868
+ subdivisions: SubdivisionNonNullableFields$1[];
13852
13869
  }
13853
13870
  interface FormattedAddressNonNullableFields$2 {
13854
13871
  formatted: string;
@@ -14821,8 +14838,12 @@ interface StreetAddressNonNullableFields {
14821
14838
  name: string;
14822
14839
  apt: string;
14823
14840
  }
14841
+ interface SubdivisionNonNullableFields {
14842
+ name: string;
14843
+ }
14824
14844
  interface AddressNonNullableFields {
14825
14845
  streetAddress?: StreetAddressNonNullableFields;
14846
+ subdivisions: SubdivisionNonNullableFields[];
14826
14847
  }
14827
14848
  interface FormattedAddressNonNullableFields$1 {
14828
14849
  formatted: string;
@@ -15149,7 +15170,7 @@ interface TicketDefinition$1 {
15149
15170
  /** Event ID associated with the ticket. */
15150
15171
  eventId?: string;
15151
15172
  /**
15152
- * 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.
15153
15174
  * @readonly
15154
15175
  */
15155
15176
  wixFeeConfig?: WixFeeConfig;
@@ -15516,7 +15537,7 @@ interface TicketDefinitionData {
15516
15537
  policy?: string | null;
15517
15538
  /** Whether this ticket type is hidden to customers and cannot be purchased. */
15518
15539
  hidden?: boolean;
15519
- /** 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. */
15520
15541
  wixFeeConfig?: WixFeeConfig;
15521
15542
  /** Ticket sale period. */
15522
15543
  salePeriod?: TicketSalePeriod;
@@ -16363,6 +16384,10 @@ interface Address$3 extends AddressStreetOneOf$3 {
16363
16384
  formatted?: string | null;
16364
16385
  /** coordinates of the physical address */
16365
16386
  location?: AddressLocation$3;
16387
+ /** country full-name */
16388
+ countryFullname?: string | null;
16389
+ /** multi-level subdivisions from top to bottom */
16390
+ subdivisions?: Subdivision$3[];
16366
16391
  }
16367
16392
  /** @oneof */
16368
16393
  interface AddressStreetOneOf$3 {
@@ -17307,11 +17332,7 @@ declare enum ScalarType {
17307
17332
  /** Minimum value. */
17308
17333
  MIN = "MIN",
17309
17334
  /** Maximum value. */
17310
- MAX = "MAX",
17311
- /** Sum of values. */
17312
- SUM = "SUM",
17313
- /** Average of values. */
17314
- AVG = "AVG"
17335
+ MAX = "MAX"
17315
17336
  }
17316
17337
  interface ValueAggregation extends ValueAggregationOptionsOneOf {
17317
17338
  /**
@@ -18048,6 +18069,10 @@ interface Address$2 extends AddressStreetOneOf$2 {
18048
18069
  formatted?: string | null;
18049
18070
  /** coordinates of the physical address */
18050
18071
  location?: AddressLocation$2;
18072
+ /** country full-name */
18073
+ countryFullname?: string | null;
18074
+ /** multi-level subdivisions from top to bottom */
18075
+ subdivisions?: Subdivision$2[];
18051
18076
  }
18052
18077
  /** @oneof */
18053
18078
  interface AddressStreetOneOf$2 {
@@ -18758,11 +18783,11 @@ interface Tag$2 {
18758
18783
  */
18759
18784
  type?: string;
18760
18785
  /**
18761
- * A `{'key':'value'}` pair object where each SEO tag property (`'name'`, `'content'`, `'rel'`, `'href'`) contains a value.
18762
- * For example: `{'name': 'description', 'content': 'the description itself'}`.
18786
+ * A `{"key": "value"}` pair object where each SEO tag property (`"name"`, `"content"`, `"rel"`, `"href"`) contains a value.
18787
+ * For example: `{"name": "description", "content": "the description itself"}`.
18763
18788
  */
18764
18789
  props?: Record<string, any> | null;
18765
- /** SEO tag meta data. For example, `{height: 300, width: 240}`. */
18790
+ /** SEO tag meta data. For example, `{"height": 300, "width": 240}`. */
18766
18791
  meta?: Record<string, any> | null;
18767
18792
  /** SEO tag inner content. For example, `<title> inner content </title>`. */
18768
18793
  children?: string;
@@ -18982,8 +19007,12 @@ interface CommonStreetAddressNonNullableFields$2 {
18982
19007
  name: string;
18983
19008
  apt: string;
18984
19009
  }
19010
+ interface CommonSubdivisionNonNullableFields$2 {
19011
+ name: string;
19012
+ }
18985
19013
  interface CommonAddressNonNullableFields$2 {
18986
19014
  streetAddress?: CommonStreetAddressNonNullableFields$2;
19015
+ subdivisions: CommonSubdivisionNonNullableFields$2[];
18987
19016
  }
18988
19017
  interface FormattedAddressNonNullableFields {
18989
19018
  formatted: string;
@@ -20171,8 +20200,8 @@ interface TaxSettings {
20171
20200
  /**
20172
20201
  * Tax application settings:
20173
20202
  *
20174
- * - `INCLUDED_IN_PRICE`: Deduct the fee from the ticket price for a seller. For example, if you're selling tickets for $10, a service fee of $0.25 is deducted from the price and you'll get $9.75.
20175
- * - `ADDED_AT_CHECKOUT`: Show the fee iin addition to the ticket price at checkout and a guest pays the fee. For example, if you sell tickets for $10, a customer sees a service fee of $0.25 and pays $10.25 in total.
20203
+ * - `INCLUDED_IN_PRICE`: Deduct the fee from the ticket price for a seller. For example, if you're selling tickets for $10, a ticket service fee of $0.25 is deducted from the price and you'll get $9.75.
20204
+ * - `ADDED_AT_CHECKOUT`: Show the fee iin addition to the ticket price at checkout and a guest pays the fee. For example, if you sell tickets for $10, a customer sees a ticket service fee of $0.25 and pays $10.25 in total.
20176
20205
  */
20177
20206
  type?: TaxType$1;
20178
20207
  /** Tax name. */
@@ -20186,9 +20215,9 @@ interface TaxSettings {
20186
20215
  declare enum TaxType$1 {
20187
20216
  /** Unknown tax type. */
20188
20217
  UNKNOWN_TAX_TYPE = "UNKNOWN_TAX_TYPE",
20189
- /** Deduct the fee from the ticket price for a seller. For example, if you're selling tickets for $10, a service fee of $0.25 is deducted from the price and you'll get $9.75. */
20218
+ /** Deduct the fee from the ticket price for a seller. For example, if you're selling tickets for $10, a ticket ticket service fee of $0.25 is deducted from the price and you'll get $9.75. */
20190
20219
  INCLUDED_IN_PRICE = "INCLUDED_IN_PRICE",
20191
- /** Show the fee in addition to the ticket price at checkout and a guest pays the fee. For example, if you sell tickets for $10, a customer sees a service fee of $0.25 and pays $10.25 in total. */
20220
+ /** Show the fee in addition to the ticket price at checkout and a guest pays the fee. For example, if you sell tickets for $10, a customer sees a ticket ticket service fee of $0.25 and pays $10.25 in total. */
20192
20221
  ADDED_AT_CHECKOUT = "ADDED_AT_CHECKOUT"
20193
20222
  }
20194
20223
  interface ExternalRegistration {
@@ -20627,11 +20656,11 @@ interface Tag$1 {
20627
20656
  */
20628
20657
  type?: string;
20629
20658
  /**
20630
- * A `{'key':'value'}` pair object where each SEO tag property (`'name'`, `'content'`, `'rel'`, `'href'`) contains a value.
20631
- * For example: `{'name': 'description', 'content': 'the description itself'}`.
20659
+ * A `{"key": "value"}` pair object where each SEO tag property (`"name"`, `"content"`, `"rel"`, `"href"`) contains a value.
20660
+ * For example: `{"name": "description", "content": "the description itself"}`.
20632
20661
  */
20633
20662
  props?: Record<string, any> | null;
20634
- /** SEO tag meta data. For example, `{height: 300, width: 240}`. */
20663
+ /** SEO tag meta data. For example, `{"height": 300, "width": 240}`. */
20635
20664
  meta?: Record<string, any> | null;
20636
20665
  /** SEO tag inner content. For example, `<title> inner content </title>`. */
20637
20666
  children?: string;
@@ -20823,8 +20852,7 @@ declare enum RequestedFields {
20823
20852
  /** Returns `agendaSettings`. */
20824
20853
  AGENDA = "AGENDA",
20825
20854
  /** Returns `categories`. */
20826
- CATEGORIES = "CATEGORIES",
20827
- CUSTOMIZABLE_TICKETS = "CUSTOMIZABLE_TICKETS"
20855
+ CATEGORIES = "CATEGORIES"
20828
20856
  }
20829
20857
  interface CreateEventResponse {
20830
20858
  /** Created event. */
@@ -21242,6 +21270,10 @@ interface Address$1 extends AddressStreetOneOf$1 {
21242
21270
  formatted?: string | null;
21243
21271
  /** coordinates of the physical address */
21244
21272
  location?: AddressLocation$1;
21273
+ /** country full-name */
21274
+ countryFullname?: string | null;
21275
+ /** multi-level subdivisions from top to bottom */
21276
+ subdivisions?: Subdivision$1[];
21245
21277
  }
21246
21278
  /** @oneof */
21247
21279
  interface AddressStreetOneOf$1 {
@@ -21993,8 +22025,12 @@ interface CommonStreetAddressNonNullableFields$1 {
21993
22025
  name: string;
21994
22026
  apt: string;
21995
22027
  }
22028
+ interface CommonSubdivisionNonNullableFields$1 {
22029
+ name: string;
22030
+ }
21996
22031
  interface CommonAddressNonNullableFields$1 {
21997
22032
  streetAddress?: CommonStreetAddressNonNullableFields$1;
22033
+ subdivisions: CommonSubdivisionNonNullableFields$1[];
21998
22034
  }
21999
22035
  interface LocationNonNullableFields$1 {
22000
22036
  type: LocationType$1;
@@ -23091,11 +23127,11 @@ declare enum PricingTypeEnumType {
23091
23127
  declare enum Type {
23092
23128
  /** Unknown fee type. */
23093
23129
  UNKNOWN_FEE_TYPE = "UNKNOWN_FEE_TYPE",
23094
- /** 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. */
23095
23131
  FEE_INCLUDED = "FEE_INCLUDED",
23096
- /** 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. */
23097
23133
  FEE_ADDED_AT_CHECKOUT = "FEE_ADDED_AT_CHECKOUT",
23098
- /** 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. */
23099
23135
  NO_FEE = "NO_FEE"
23100
23136
  }
23101
23137
  declare enum SaleStatusEnumStatus {
@@ -24022,6 +24058,10 @@ interface Address extends AddressStreetOneOf {
24022
24058
  formatted?: string | null;
24023
24059
  /** coordinates of the physical address */
24024
24060
  location?: AddressLocation;
24061
+ /** country full-name */
24062
+ countryFullname?: string | null;
24063
+ /** multi-level subdivisions from top to bottom */
24064
+ subdivisions?: Subdivision[];
24025
24065
  }
24026
24066
  /** @oneof */
24027
24067
  interface AddressStreetOneOf {
@@ -24753,11 +24793,11 @@ interface Tag {
24753
24793
  */
24754
24794
  type?: string;
24755
24795
  /**
24756
- * A `{'key':'value'}` pair object where each SEO tag property (`'name'`, `'content'`, `'rel'`, `'href'`) contains a value.
24757
- * For example: `{'name': 'description', 'content': 'the description itself'}`.
24796
+ * A `{"key": "value"}` pair object where each SEO tag property (`"name"`, `"content"`, `"rel"`, `"href"`) contains a value.
24797
+ * For example: `{"name": "description", "content": "the description itself"}`.
24758
24798
  */
24759
24799
  props?: Record<string, any> | null;
24760
- /** SEO tag meta data. For example, `{height: 300, width: 240}`. */
24800
+ /** SEO tag meta data. For example, `{"height": 300, "width": 240}`. */
24761
24801
  meta?: Record<string, any> | null;
24762
24802
  /** SEO tag inner content. For example, `<title> inner content </title>`. */
24763
24803
  children?: string;
@@ -25092,7 +25132,9 @@ declare enum Namespace {
25092
25132
  */
25093
25133
  UGC_TEMPLATE = "UGC_TEMPLATE",
25094
25134
  /** Codux Headless Sites */
25095
- CODUX = "CODUX"
25135
+ CODUX = "CODUX",
25136
+ /** Bobb - AI Design Creator. */
25137
+ MEDIA_DESIGN_CREATOR = "MEDIA_DESIGN_CREATOR"
25096
25138
  }
25097
25139
  /** Site transferred to another user. */
25098
25140
  interface SiteTransferred {
@@ -25136,6 +25178,21 @@ interface SiteMarkedAsTemplate {
25136
25178
  }
25137
25179
  interface SiteMarkedAsWixSite {
25138
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
+ */
25139
25196
  interface ServiceProvisioned {
25140
25197
  /** Either UUID or EmbeddedServiceType. */
25141
25198
  appDefId?: string;
@@ -25223,8 +25280,12 @@ interface CommonStreetAddressNonNullableFields {
25223
25280
  name: string;
25224
25281
  apt: string;
25225
25282
  }
25283
+ interface CommonSubdivisionNonNullableFields {
25284
+ name: string;
25285
+ }
25226
25286
  interface CommonAddressNonNullableFields {
25227
25287
  streetAddress?: CommonStreetAddressNonNullableFields;
25288
+ subdivisions: CommonSubdivisionNonNullableFields[];
25228
25289
  }
25229
25290
  interface LocationNonNullableFields {
25230
25291
  type: LocationType;