@wix/auto_sdk_events_wix-events-v-2 1.0.12 → 1.0.13

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.
@@ -2464,8 +2464,8 @@ export interface EventEventStarted {
2464
2464
  * @format GUID
2465
2465
  */
2466
2466
  eventId?: string;
2467
- /** True if at least one guest is attending the event. */
2468
- hasGuestsAttending?: boolean | null;
2467
+ /** True if at least one guest is registered to the event with any attendance status. */
2468
+ hasGuests?: boolean | null;
2469
2469
  }
2470
2470
  export interface EventEventEnded {
2471
2471
  /** Event end timestamp in ISO UTC format. */
@@ -2475,8 +2475,8 @@ export interface EventEventEnded {
2475
2475
  * @format GUID
2476
2476
  */
2477
2477
  eventId?: string;
2478
- /** True if at least one guest is attending the event. */
2479
- hasGuestsAttending?: boolean | null;
2478
+ /** True if at least one guest is registered to the event with any attendance status. */
2479
+ hasGuests?: boolean | null;
2480
2480
  }
2481
2481
  export interface EventEventReminder {
2482
2482
  /** Reminder timestamp in ISO UTC format. */
@@ -2503,8 +2503,8 @@ export interface EventEventReminder {
2503
2503
  userId?: string | null;
2504
2504
  /** Time until the start of event (currently, reminder letter is triggered 1 day before the start of event). */
2505
2505
  startsIn?: TimeDuration;
2506
- /** True if at least one guest is attending the event. */
2507
- hasGuestsAttending?: boolean | null;
2506
+ /** True if at least one guest is registered to the event with any attendance status. */
2507
+ hasGuests?: boolean | null;
2508
2508
  }
2509
2509
  export interface EventEventPublished {
2510
2510
  /** Event publishing timestamp in ISO UTC format. */
@@ -2603,8 +2603,8 @@ export interface EventEventCanceled {
2603
2603
  * @format GUID
2604
2604
  */
2605
2605
  userId?: string | null;
2606
- /** True if at least one guest is attending the event. */
2607
- hasGuestsAttending?: boolean | null;
2606
+ /** True if at least one guest is registered to the event with any attendance status. */
2607
+ hasGuests?: boolean | null;
2608
2608
  }
2609
2609
  export interface CreateEventRequest {
2610
2610
  /** Event data. */
@@ -3924,8 +3924,8 @@ export interface EventCanceled {
3924
3924
  * @format GUID
3925
3925
  */
3926
3926
  userId?: string | null;
3927
- /** True if at least one guest is attending the event. */
3928
- hasGuestsAttending?: boolean | null;
3927
+ /** True if at least one guest is registered to the event with any attendance status. */
3928
+ hasGuests?: boolean | null;
3929
3929
  }
3930
3930
  export interface EventStarted {
3931
3931
  /** Event start timestamp in ISO UTC format. */
@@ -3935,8 +3935,8 @@ export interface EventStarted {
3935
3935
  * @format GUID
3936
3936
  */
3937
3937
  eventId?: string;
3938
- /** True if at least one guest is attending the event. */
3939
- hasGuestsAttending?: boolean | null;
3938
+ /** True if at least one guest is registered to the event with any attendance status. */
3939
+ hasGuests?: boolean | null;
3940
3940
  }
3941
3941
  export interface EventEnded {
3942
3942
  /** Event end timestamp in ISO UTC format. */
@@ -3946,8 +3946,8 @@ export interface EventEnded {
3946
3946
  * @format GUID
3947
3947
  */
3948
3948
  eventId?: string;
3949
- /** True if at least one guest is attending the event. */
3950
- hasGuestsAttending?: boolean | null;
3949
+ /** True if at least one guest is registered to the event with any attendance status. */
3950
+ hasGuests?: boolean | null;
3951
3951
  }
3952
3952
  export interface EventReminder {
3953
3953
  /** Reminder timestamp in ISO UTC format. */
@@ -3970,8 +3970,8 @@ export interface EventReminder {
3970
3970
  userId?: string | null;
3971
3971
  /** Time until the event starts (currently, reminder is triggered 1 day before event starts). */
3972
3972
  startsIn?: TimeDuration;
3973
- /** True if at least one guest is attending the event. */
3974
- hasGuestsAttending?: boolean | null;
3973
+ /** True if at least one guest is registered to the event with any attendance status. */
3974
+ hasGuests?: boolean | null;
3975
3975
  }
3976
3976
  export interface DomainEvent extends DomainEventBodyOneOf {
3977
3977
  createdEvent?: EntityCreatedEvent;
@@ -2492,8 +2492,8 @@ export interface EventEventStarted {
2492
2492
  * @format GUID
2493
2493
  */
2494
2494
  eventId?: string;
2495
- /** True if at least one guest is attending the event. */
2496
- hasGuestsAttending?: boolean | null;
2495
+ /** True if at least one guest is registered to the event with any attendance status. */
2496
+ hasGuests?: boolean | null;
2497
2497
  }
2498
2498
  export interface EventEventEnded {
2499
2499
  /** Event end timestamp in ISO UTC format. */
@@ -2503,8 +2503,8 @@ export interface EventEventEnded {
2503
2503
  * @format GUID
2504
2504
  */
2505
2505
  eventId?: string;
2506
- /** True if at least one guest is attending the event. */
2507
- hasGuestsAttending?: boolean | null;
2506
+ /** True if at least one guest is registered to the event with any attendance status. */
2507
+ hasGuests?: boolean | null;
2508
2508
  }
2509
2509
  export interface EventEventReminder {
2510
2510
  /** Reminder timestamp in ISO UTC format. */
@@ -2531,8 +2531,8 @@ export interface EventEventReminder {
2531
2531
  userId?: string | null;
2532
2532
  /** Time until the start of event (currently, reminder letter is triggered 1 day before the start of event). */
2533
2533
  startsIn?: TimeDuration;
2534
- /** True if at least one guest is attending the event. */
2535
- hasGuestsAttending?: boolean | null;
2534
+ /** True if at least one guest is registered to the event with any attendance status. */
2535
+ hasGuests?: boolean | null;
2536
2536
  }
2537
2537
  export interface EventEventPublished {
2538
2538
  /** Event publishing timestamp in ISO UTC format. */
@@ -2631,8 +2631,8 @@ export interface EventEventCanceled {
2631
2631
  * @format GUID
2632
2632
  */
2633
2633
  userId?: string | null;
2634
- /** True if at least one guest is attending the event. */
2635
- hasGuestsAttending?: boolean | null;
2634
+ /** True if at least one guest is registered to the event with any attendance status. */
2635
+ hasGuests?: boolean | null;
2636
2636
  }
2637
2637
  export interface CreateEventRequest {
2638
2638
  /** Event data. */
@@ -3934,8 +3934,8 @@ export interface EventCanceled {
3934
3934
  * @format GUID
3935
3935
  */
3936
3936
  userId?: string | null;
3937
- /** True if at least one guest is attending the event. */
3938
- hasGuestsAttending?: boolean | null;
3937
+ /** True if at least one guest is registered to the event with any attendance status. */
3938
+ hasGuests?: boolean | null;
3939
3939
  }
3940
3940
  export interface EventStarted {
3941
3941
  /** Event start timestamp in ISO UTC format. */
@@ -3945,8 +3945,8 @@ export interface EventStarted {
3945
3945
  * @format GUID
3946
3946
  */
3947
3947
  eventId?: string;
3948
- /** True if at least one guest is attending the event. */
3949
- hasGuestsAttending?: boolean | null;
3948
+ /** True if at least one guest is registered to the event with any attendance status. */
3949
+ hasGuests?: boolean | null;
3950
3950
  }
3951
3951
  export interface EventEnded {
3952
3952
  /** Event end timestamp in ISO UTC format. */
@@ -3956,8 +3956,8 @@ export interface EventEnded {
3956
3956
  * @format GUID
3957
3957
  */
3958
3958
  eventId?: string;
3959
- /** True if at least one guest is attending the event. */
3960
- hasGuestsAttending?: boolean | null;
3959
+ /** True if at least one guest is registered to the event with any attendance status. */
3960
+ hasGuests?: boolean | null;
3961
3961
  }
3962
3962
  export interface EventReminder {
3963
3963
  /** Reminder timestamp in ISO UTC format. */
@@ -3980,8 +3980,8 @@ export interface EventReminder {
3980
3980
  userId?: string | null;
3981
3981
  /** Time until the event starts (currently, reminder is triggered 1 day before event starts). */
3982
3982
  startsIn?: TimeDuration;
3983
- /** True if at least one guest is attending the event. */
3984
- hasGuestsAttending?: boolean | null;
3983
+ /** True if at least one guest is registered to the event with any attendance status. */
3984
+ hasGuests?: boolean | null;
3985
3985
  }
3986
3986
  export interface DomainEvent extends DomainEventBodyOneOf {
3987
3987
  createdEvent?: EntityCreatedEvent;
@@ -2464,8 +2464,8 @@ export interface EventEventStarted {
2464
2464
  * @format GUID
2465
2465
  */
2466
2466
  eventId?: string;
2467
- /** True if at least one guest is attending the event. */
2468
- hasGuestsAttending?: boolean | null;
2467
+ /** True if at least one guest is registered to the event with any attendance status. */
2468
+ hasGuests?: boolean | null;
2469
2469
  }
2470
2470
  export interface EventEventEnded {
2471
2471
  /** Event end timestamp in ISO UTC format. */
@@ -2475,8 +2475,8 @@ export interface EventEventEnded {
2475
2475
  * @format GUID
2476
2476
  */
2477
2477
  eventId?: string;
2478
- /** True if at least one guest is attending the event. */
2479
- hasGuestsAttending?: boolean | null;
2478
+ /** True if at least one guest is registered to the event with any attendance status. */
2479
+ hasGuests?: boolean | null;
2480
2480
  }
2481
2481
  export interface EventEventReminder {
2482
2482
  /** Reminder timestamp in ISO UTC format. */
@@ -2503,8 +2503,8 @@ export interface EventEventReminder {
2503
2503
  userId?: string | null;
2504
2504
  /** Time until the start of event (currently, reminder letter is triggered 1 day before the start of event). */
2505
2505
  startsIn?: TimeDuration;
2506
- /** True if at least one guest is attending the event. */
2507
- hasGuestsAttending?: boolean | null;
2506
+ /** True if at least one guest is registered to the event with any attendance status. */
2507
+ hasGuests?: boolean | null;
2508
2508
  }
2509
2509
  export interface EventEventPublished {
2510
2510
  /** Event publishing timestamp in ISO UTC format. */
@@ -2603,8 +2603,8 @@ export interface EventEventCanceled {
2603
2603
  * @format GUID
2604
2604
  */
2605
2605
  userId?: string | null;
2606
- /** True if at least one guest is attending the event. */
2607
- hasGuestsAttending?: boolean | null;
2606
+ /** True if at least one guest is registered to the event with any attendance status. */
2607
+ hasGuests?: boolean | null;
2608
2608
  }
2609
2609
  export interface CreateEventRequest {
2610
2610
  /** Event data. */
@@ -3924,8 +3924,8 @@ export interface EventCanceled {
3924
3924
  * @format GUID
3925
3925
  */
3926
3926
  userId?: string | null;
3927
- /** True if at least one guest is attending the event. */
3928
- hasGuestsAttending?: boolean | null;
3927
+ /** True if at least one guest is registered to the event with any attendance status. */
3928
+ hasGuests?: boolean | null;
3929
3929
  }
3930
3930
  export interface EventStarted {
3931
3931
  /** Event start timestamp in ISO UTC format. */
@@ -3935,8 +3935,8 @@ export interface EventStarted {
3935
3935
  * @format GUID
3936
3936
  */
3937
3937
  eventId?: string;
3938
- /** True if at least one guest is attending the event. */
3939
- hasGuestsAttending?: boolean | null;
3938
+ /** True if at least one guest is registered to the event with any attendance status. */
3939
+ hasGuests?: boolean | null;
3940
3940
  }
3941
3941
  export interface EventEnded {
3942
3942
  /** Event end timestamp in ISO UTC format. */
@@ -3946,8 +3946,8 @@ export interface EventEnded {
3946
3946
  * @format GUID
3947
3947
  */
3948
3948
  eventId?: string;
3949
- /** True if at least one guest is attending the event. */
3950
- hasGuestsAttending?: boolean | null;
3949
+ /** True if at least one guest is registered to the event with any attendance status. */
3950
+ hasGuests?: boolean | null;
3951
3951
  }
3952
3952
  export interface EventReminder {
3953
3953
  /** Reminder timestamp in ISO UTC format. */
@@ -3970,8 +3970,8 @@ export interface EventReminder {
3970
3970
  userId?: string | null;
3971
3971
  /** Time until the event starts (currently, reminder is triggered 1 day before event starts). */
3972
3972
  startsIn?: TimeDuration;
3973
- /** True if at least one guest is attending the event. */
3974
- hasGuestsAttending?: boolean | null;
3973
+ /** True if at least one guest is registered to the event with any attendance status. */
3974
+ hasGuests?: boolean | null;
3975
3975
  }
3976
3976
  export interface DomainEvent extends DomainEventBodyOneOf {
3977
3977
  createdEvent?: EntityCreatedEvent;
@@ -2492,8 +2492,8 @@ export interface EventEventStarted {
2492
2492
  * @format GUID
2493
2493
  */
2494
2494
  eventId?: string;
2495
- /** True if at least one guest is attending the event. */
2496
- hasGuestsAttending?: boolean | null;
2495
+ /** True if at least one guest is registered to the event with any attendance status. */
2496
+ hasGuests?: boolean | null;
2497
2497
  }
2498
2498
  export interface EventEventEnded {
2499
2499
  /** Event end timestamp in ISO UTC format. */
@@ -2503,8 +2503,8 @@ export interface EventEventEnded {
2503
2503
  * @format GUID
2504
2504
  */
2505
2505
  eventId?: string;
2506
- /** True if at least one guest is attending the event. */
2507
- hasGuestsAttending?: boolean | null;
2506
+ /** True if at least one guest is registered to the event with any attendance status. */
2507
+ hasGuests?: boolean | null;
2508
2508
  }
2509
2509
  export interface EventEventReminder {
2510
2510
  /** Reminder timestamp in ISO UTC format. */
@@ -2531,8 +2531,8 @@ export interface EventEventReminder {
2531
2531
  userId?: string | null;
2532
2532
  /** Time until the start of event (currently, reminder letter is triggered 1 day before the start of event). */
2533
2533
  startsIn?: TimeDuration;
2534
- /** True if at least one guest is attending the event. */
2535
- hasGuestsAttending?: boolean | null;
2534
+ /** True if at least one guest is registered to the event with any attendance status. */
2535
+ hasGuests?: boolean | null;
2536
2536
  }
2537
2537
  export interface EventEventPublished {
2538
2538
  /** Event publishing timestamp in ISO UTC format. */
@@ -2631,8 +2631,8 @@ export interface EventEventCanceled {
2631
2631
  * @format GUID
2632
2632
  */
2633
2633
  userId?: string | null;
2634
- /** True if at least one guest is attending the event. */
2635
- hasGuestsAttending?: boolean | null;
2634
+ /** True if at least one guest is registered to the event with any attendance status. */
2635
+ hasGuests?: boolean | null;
2636
2636
  }
2637
2637
  export interface CreateEventRequest {
2638
2638
  /** Event data. */
@@ -3934,8 +3934,8 @@ export interface EventCanceled {
3934
3934
  * @format GUID
3935
3935
  */
3936
3936
  userId?: string | null;
3937
- /** True if at least one guest is attending the event. */
3938
- hasGuestsAttending?: boolean | null;
3937
+ /** True if at least one guest is registered to the event with any attendance status. */
3938
+ hasGuests?: boolean | null;
3939
3939
  }
3940
3940
  export interface EventStarted {
3941
3941
  /** Event start timestamp in ISO UTC format. */
@@ -3945,8 +3945,8 @@ export interface EventStarted {
3945
3945
  * @format GUID
3946
3946
  */
3947
3947
  eventId?: string;
3948
- /** True if at least one guest is attending the event. */
3949
- hasGuestsAttending?: boolean | null;
3948
+ /** True if at least one guest is registered to the event with any attendance status. */
3949
+ hasGuests?: boolean | null;
3950
3950
  }
3951
3951
  export interface EventEnded {
3952
3952
  /** Event end timestamp in ISO UTC format. */
@@ -3956,8 +3956,8 @@ export interface EventEnded {
3956
3956
  * @format GUID
3957
3957
  */
3958
3958
  eventId?: string;
3959
- /** True if at least one guest is attending the event. */
3960
- hasGuestsAttending?: boolean | null;
3959
+ /** True if at least one guest is registered to the event with any attendance status. */
3960
+ hasGuests?: boolean | null;
3961
3961
  }
3962
3962
  export interface EventReminder {
3963
3963
  /** Reminder timestamp in ISO UTC format. */
@@ -3980,8 +3980,8 @@ export interface EventReminder {
3980
3980
  userId?: string | null;
3981
3981
  /** Time until the event starts (currently, reminder is triggered 1 day before event starts). */
3982
3982
  startsIn?: TimeDuration;
3983
- /** True if at least one guest is attending the event. */
3984
- hasGuestsAttending?: boolean | null;
3983
+ /** True if at least one guest is registered to the event with any attendance status. */
3984
+ hasGuests?: boolean | null;
3985
3985
  }
3986
3986
  export interface DomainEvent extends DomainEventBodyOneOf {
3987
3987
  createdEvent?: EntityCreatedEvent;
@@ -2464,8 +2464,8 @@ export interface EventEventStarted {
2464
2464
  * @format GUID
2465
2465
  */
2466
2466
  eventId?: string;
2467
- /** True if at least one guest is attending the event. */
2468
- hasGuestsAttending?: boolean | null;
2467
+ /** True if at least one guest is registered to the event with any attendance status. */
2468
+ hasGuests?: boolean | null;
2469
2469
  }
2470
2470
  export interface EventEventEnded {
2471
2471
  /** Event end timestamp in ISO UTC format. */
@@ -2475,8 +2475,8 @@ export interface EventEventEnded {
2475
2475
  * @format GUID
2476
2476
  */
2477
2477
  eventId?: string;
2478
- /** True if at least one guest is attending the event. */
2479
- hasGuestsAttending?: boolean | null;
2478
+ /** True if at least one guest is registered to the event with any attendance status. */
2479
+ hasGuests?: boolean | null;
2480
2480
  }
2481
2481
  export interface EventEventReminder {
2482
2482
  /** Reminder timestamp in ISO UTC format. */
@@ -2503,8 +2503,8 @@ export interface EventEventReminder {
2503
2503
  userId?: string | null;
2504
2504
  /** Time until the start of event (currently, reminder letter is triggered 1 day before the start of event). */
2505
2505
  startsIn?: TimeDuration;
2506
- /** True if at least one guest is attending the event. */
2507
- hasGuestsAttending?: boolean | null;
2506
+ /** True if at least one guest is registered to the event with any attendance status. */
2507
+ hasGuests?: boolean | null;
2508
2508
  }
2509
2509
  export interface EventEventPublished {
2510
2510
  /** Event publishing timestamp in ISO UTC format. */
@@ -2603,8 +2603,8 @@ export interface EventEventCanceled {
2603
2603
  * @format GUID
2604
2604
  */
2605
2605
  userId?: string | null;
2606
- /** True if at least one guest is attending the event. */
2607
- hasGuestsAttending?: boolean | null;
2606
+ /** True if at least one guest is registered to the event with any attendance status. */
2607
+ hasGuests?: boolean | null;
2608
2608
  }
2609
2609
  export interface CreateEventRequest {
2610
2610
  /** Event data. */
@@ -3924,8 +3924,8 @@ export interface EventCanceled {
3924
3924
  * @format GUID
3925
3925
  */
3926
3926
  userId?: string | null;
3927
- /** True if at least one guest is attending the event. */
3928
- hasGuestsAttending?: boolean | null;
3927
+ /** True if at least one guest is registered to the event with any attendance status. */
3928
+ hasGuests?: boolean | null;
3929
3929
  }
3930
3930
  export interface EventStarted {
3931
3931
  /** Event start timestamp in ISO UTC format. */
@@ -3935,8 +3935,8 @@ export interface EventStarted {
3935
3935
  * @format GUID
3936
3936
  */
3937
3937
  eventId?: string;
3938
- /** True if at least one guest is attending the event. */
3939
- hasGuestsAttending?: boolean | null;
3938
+ /** True if at least one guest is registered to the event with any attendance status. */
3939
+ hasGuests?: boolean | null;
3940
3940
  }
3941
3941
  export interface EventEnded {
3942
3942
  /** Event end timestamp in ISO UTC format. */
@@ -3946,8 +3946,8 @@ export interface EventEnded {
3946
3946
  * @format GUID
3947
3947
  */
3948
3948
  eventId?: string;
3949
- /** True if at least one guest is attending the event. */
3950
- hasGuestsAttending?: boolean | null;
3949
+ /** True if at least one guest is registered to the event with any attendance status. */
3950
+ hasGuests?: boolean | null;
3951
3951
  }
3952
3952
  export interface EventReminder {
3953
3953
  /** Reminder timestamp in ISO UTC format. */
@@ -3970,8 +3970,8 @@ export interface EventReminder {
3970
3970
  userId?: string | null;
3971
3971
  /** Time until the event starts (currently, reminder is triggered 1 day before event starts). */
3972
3972
  startsIn?: TimeDuration;
3973
- /** True if at least one guest is attending the event. */
3974
- hasGuestsAttending?: boolean | null;
3973
+ /** True if at least one guest is registered to the event with any attendance status. */
3974
+ hasGuests?: boolean | null;
3975
3975
  }
3976
3976
  export interface DomainEvent extends DomainEventBodyOneOf {
3977
3977
  createdEvent?: EntityCreatedEvent;
@@ -2492,8 +2492,8 @@ export interface EventEventStarted {
2492
2492
  * @format GUID
2493
2493
  */
2494
2494
  eventId?: string;
2495
- /** True if at least one guest is attending the event. */
2496
- hasGuestsAttending?: boolean | null;
2495
+ /** True if at least one guest is registered to the event with any attendance status. */
2496
+ hasGuests?: boolean | null;
2497
2497
  }
2498
2498
  export interface EventEventEnded {
2499
2499
  /** Event end timestamp in ISO UTC format. */
@@ -2503,8 +2503,8 @@ export interface EventEventEnded {
2503
2503
  * @format GUID
2504
2504
  */
2505
2505
  eventId?: string;
2506
- /** True if at least one guest is attending the event. */
2507
- hasGuestsAttending?: boolean | null;
2506
+ /** True if at least one guest is registered to the event with any attendance status. */
2507
+ hasGuests?: boolean | null;
2508
2508
  }
2509
2509
  export interface EventEventReminder {
2510
2510
  /** Reminder timestamp in ISO UTC format. */
@@ -2531,8 +2531,8 @@ export interface EventEventReminder {
2531
2531
  userId?: string | null;
2532
2532
  /** Time until the start of event (currently, reminder letter is triggered 1 day before the start of event). */
2533
2533
  startsIn?: TimeDuration;
2534
- /** True if at least one guest is attending the event. */
2535
- hasGuestsAttending?: boolean | null;
2534
+ /** True if at least one guest is registered to the event with any attendance status. */
2535
+ hasGuests?: boolean | null;
2536
2536
  }
2537
2537
  export interface EventEventPublished {
2538
2538
  /** Event publishing timestamp in ISO UTC format. */
@@ -2631,8 +2631,8 @@ export interface EventEventCanceled {
2631
2631
  * @format GUID
2632
2632
  */
2633
2633
  userId?: string | null;
2634
- /** True if at least one guest is attending the event. */
2635
- hasGuestsAttending?: boolean | null;
2634
+ /** True if at least one guest is registered to the event with any attendance status. */
2635
+ hasGuests?: boolean | null;
2636
2636
  }
2637
2637
  export interface CreateEventRequest {
2638
2638
  /** Event data. */
@@ -3934,8 +3934,8 @@ export interface EventCanceled {
3934
3934
  * @format GUID
3935
3935
  */
3936
3936
  userId?: string | null;
3937
- /** True if at least one guest is attending the event. */
3938
- hasGuestsAttending?: boolean | null;
3937
+ /** True if at least one guest is registered to the event with any attendance status. */
3938
+ hasGuests?: boolean | null;
3939
3939
  }
3940
3940
  export interface EventStarted {
3941
3941
  /** Event start timestamp in ISO UTC format. */
@@ -3945,8 +3945,8 @@ export interface EventStarted {
3945
3945
  * @format GUID
3946
3946
  */
3947
3947
  eventId?: string;
3948
- /** True if at least one guest is attending the event. */
3949
- hasGuestsAttending?: boolean | null;
3948
+ /** True if at least one guest is registered to the event with any attendance status. */
3949
+ hasGuests?: boolean | null;
3950
3950
  }
3951
3951
  export interface EventEnded {
3952
3952
  /** Event end timestamp in ISO UTC format. */
@@ -3956,8 +3956,8 @@ export interface EventEnded {
3956
3956
  * @format GUID
3957
3957
  */
3958
3958
  eventId?: string;
3959
- /** True if at least one guest is attending the event. */
3960
- hasGuestsAttending?: boolean | null;
3959
+ /** True if at least one guest is registered to the event with any attendance status. */
3960
+ hasGuests?: boolean | null;
3961
3961
  }
3962
3962
  export interface EventReminder {
3963
3963
  /** Reminder timestamp in ISO UTC format. */
@@ -3980,8 +3980,8 @@ export interface EventReminder {
3980
3980
  userId?: string | null;
3981
3981
  /** Time until the event starts (currently, reminder is triggered 1 day before event starts). */
3982
3982
  startsIn?: TimeDuration;
3983
- /** True if at least one guest is attending the event. */
3984
- hasGuestsAttending?: boolean | null;
3983
+ /** True if at least one guest is registered to the event with any attendance status. */
3984
+ hasGuests?: boolean | null;
3985
3985
  }
3986
3986
  export interface DomainEvent extends DomainEventBodyOneOf {
3987
3987
  createdEvent?: EntityCreatedEvent;
@@ -2464,8 +2464,8 @@ export interface EventEventStarted {
2464
2464
  * @format GUID
2465
2465
  */
2466
2466
  eventId?: string;
2467
- /** True if at least one guest is attending the event. */
2468
- hasGuestsAttending?: boolean | null;
2467
+ /** True if at least one guest is registered to the event with any attendance status. */
2468
+ hasGuests?: boolean | null;
2469
2469
  }
2470
2470
  export interface EventEventEnded {
2471
2471
  /** Event end timestamp in ISO UTC format. */
@@ -2475,8 +2475,8 @@ export interface EventEventEnded {
2475
2475
  * @format GUID
2476
2476
  */
2477
2477
  eventId?: string;
2478
- /** True if at least one guest is attending the event. */
2479
- hasGuestsAttending?: boolean | null;
2478
+ /** True if at least one guest is registered to the event with any attendance status. */
2479
+ hasGuests?: boolean | null;
2480
2480
  }
2481
2481
  export interface EventEventReminder {
2482
2482
  /** Reminder timestamp in ISO UTC format. */
@@ -2503,8 +2503,8 @@ export interface EventEventReminder {
2503
2503
  userId?: string | null;
2504
2504
  /** Time until the start of event (currently, reminder letter is triggered 1 day before the start of event). */
2505
2505
  startsIn?: TimeDuration;
2506
- /** True if at least one guest is attending the event. */
2507
- hasGuestsAttending?: boolean | null;
2506
+ /** True if at least one guest is registered to the event with any attendance status. */
2507
+ hasGuests?: boolean | null;
2508
2508
  }
2509
2509
  export interface EventEventPublished {
2510
2510
  /** Event publishing timestamp in ISO UTC format. */
@@ -2603,8 +2603,8 @@ export interface EventEventCanceled {
2603
2603
  * @format GUID
2604
2604
  */
2605
2605
  userId?: string | null;
2606
- /** True if at least one guest is attending the event. */
2607
- hasGuestsAttending?: boolean | null;
2606
+ /** True if at least one guest is registered to the event with any attendance status. */
2607
+ hasGuests?: boolean | null;
2608
2608
  }
2609
2609
  export interface CreateEventRequest {
2610
2610
  /** Event data. */
@@ -3924,8 +3924,8 @@ export interface EventCanceled {
3924
3924
  * @format GUID
3925
3925
  */
3926
3926
  userId?: string | null;
3927
- /** True if at least one guest is attending the event. */
3928
- hasGuestsAttending?: boolean | null;
3927
+ /** True if at least one guest is registered to the event with any attendance status. */
3928
+ hasGuests?: boolean | null;
3929
3929
  }
3930
3930
  export interface EventStarted {
3931
3931
  /** Event start timestamp in ISO UTC format. */
@@ -3935,8 +3935,8 @@ export interface EventStarted {
3935
3935
  * @format GUID
3936
3936
  */
3937
3937
  eventId?: string;
3938
- /** True if at least one guest is attending the event. */
3939
- hasGuestsAttending?: boolean | null;
3938
+ /** True if at least one guest is registered to the event with any attendance status. */
3939
+ hasGuests?: boolean | null;
3940
3940
  }
3941
3941
  export interface EventEnded {
3942
3942
  /** Event end timestamp in ISO UTC format. */
@@ -3946,8 +3946,8 @@ export interface EventEnded {
3946
3946
  * @format GUID
3947
3947
  */
3948
3948
  eventId?: string;
3949
- /** True if at least one guest is attending the event. */
3950
- hasGuestsAttending?: boolean | null;
3949
+ /** True if at least one guest is registered to the event with any attendance status. */
3950
+ hasGuests?: boolean | null;
3951
3951
  }
3952
3952
  export interface EventReminder {
3953
3953
  /** Reminder timestamp in ISO UTC format. */
@@ -3970,8 +3970,8 @@ export interface EventReminder {
3970
3970
  userId?: string | null;
3971
3971
  /** Time until the event starts (currently, reminder is triggered 1 day before event starts). */
3972
3972
  startsIn?: TimeDuration;
3973
- /** True if at least one guest is attending the event. */
3974
- hasGuestsAttending?: boolean | null;
3973
+ /** True if at least one guest is registered to the event with any attendance status. */
3974
+ hasGuests?: boolean | null;
3975
3975
  }
3976
3976
  export interface DomainEvent extends DomainEventBodyOneOf {
3977
3977
  createdEvent?: EntityCreatedEvent;
@@ -2492,8 +2492,8 @@ export interface EventEventStarted {
2492
2492
  * @format GUID
2493
2493
  */
2494
2494
  eventId?: string;
2495
- /** True if at least one guest is attending the event. */
2496
- hasGuestsAttending?: boolean | null;
2495
+ /** True if at least one guest is registered to the event with any attendance status. */
2496
+ hasGuests?: boolean | null;
2497
2497
  }
2498
2498
  export interface EventEventEnded {
2499
2499
  /** Event end timestamp in ISO UTC format. */
@@ -2503,8 +2503,8 @@ export interface EventEventEnded {
2503
2503
  * @format GUID
2504
2504
  */
2505
2505
  eventId?: string;
2506
- /** True if at least one guest is attending the event. */
2507
- hasGuestsAttending?: boolean | null;
2506
+ /** True if at least one guest is registered to the event with any attendance status. */
2507
+ hasGuests?: boolean | null;
2508
2508
  }
2509
2509
  export interface EventEventReminder {
2510
2510
  /** Reminder timestamp in ISO UTC format. */
@@ -2531,8 +2531,8 @@ export interface EventEventReminder {
2531
2531
  userId?: string | null;
2532
2532
  /** Time until the start of event (currently, reminder letter is triggered 1 day before the start of event). */
2533
2533
  startsIn?: TimeDuration;
2534
- /** True if at least one guest is attending the event. */
2535
- hasGuestsAttending?: boolean | null;
2534
+ /** True if at least one guest is registered to the event with any attendance status. */
2535
+ hasGuests?: boolean | null;
2536
2536
  }
2537
2537
  export interface EventEventPublished {
2538
2538
  /** Event publishing timestamp in ISO UTC format. */
@@ -2631,8 +2631,8 @@ export interface EventEventCanceled {
2631
2631
  * @format GUID
2632
2632
  */
2633
2633
  userId?: string | null;
2634
- /** True if at least one guest is attending the event. */
2635
- hasGuestsAttending?: boolean | null;
2634
+ /** True if at least one guest is registered to the event with any attendance status. */
2635
+ hasGuests?: boolean | null;
2636
2636
  }
2637
2637
  export interface CreateEventRequest {
2638
2638
  /** Event data. */
@@ -3934,8 +3934,8 @@ export interface EventCanceled {
3934
3934
  * @format GUID
3935
3935
  */
3936
3936
  userId?: string | null;
3937
- /** True if at least one guest is attending the event. */
3938
- hasGuestsAttending?: boolean | null;
3937
+ /** True if at least one guest is registered to the event with any attendance status. */
3938
+ hasGuests?: boolean | null;
3939
3939
  }
3940
3940
  export interface EventStarted {
3941
3941
  /** Event start timestamp in ISO UTC format. */
@@ -3945,8 +3945,8 @@ export interface EventStarted {
3945
3945
  * @format GUID
3946
3946
  */
3947
3947
  eventId?: string;
3948
- /** True if at least one guest is attending the event. */
3949
- hasGuestsAttending?: boolean | null;
3948
+ /** True if at least one guest is registered to the event with any attendance status. */
3949
+ hasGuests?: boolean | null;
3950
3950
  }
3951
3951
  export interface EventEnded {
3952
3952
  /** Event end timestamp in ISO UTC format. */
@@ -3956,8 +3956,8 @@ export interface EventEnded {
3956
3956
  * @format GUID
3957
3957
  */
3958
3958
  eventId?: string;
3959
- /** True if at least one guest is attending the event. */
3960
- hasGuestsAttending?: boolean | null;
3959
+ /** True if at least one guest is registered to the event with any attendance status. */
3960
+ hasGuests?: boolean | null;
3961
3961
  }
3962
3962
  export interface EventReminder {
3963
3963
  /** Reminder timestamp in ISO UTC format. */
@@ -3980,8 +3980,8 @@ export interface EventReminder {
3980
3980
  userId?: string | null;
3981
3981
  /** Time until the event starts (currently, reminder is triggered 1 day before event starts). */
3982
3982
  startsIn?: TimeDuration;
3983
- /** True if at least one guest is attending the event. */
3984
- hasGuestsAttending?: boolean | null;
3983
+ /** True if at least one guest is registered to the event with any attendance status. */
3984
+ hasGuests?: boolean | null;
3985
3985
  }
3986
3986
  export interface DomainEvent extends DomainEventBodyOneOf {
3987
3987
  createdEvent?: EntityCreatedEvent;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wix/auto_sdk_events_wix-events-v-2",
3
- "version": "1.0.12",
3
+ "version": "1.0.13",
4
4
  "publishConfig": {
5
5
  "registry": "https://registry.npmjs.org/",
6
6
  "access": "public"
@@ -48,5 +48,5 @@
48
48
  "fqdn": "wix.events.v3.event"
49
49
  }
50
50
  },
51
- "falconPackageHash": "1f32cb700580044dcc432cf294e46034c2195b745d18d5a2b3992594"
51
+ "falconPackageHash": "5b971591b80f451c34dd22e7d8b6b615524167772d8909f9af4b3593"
52
52
  }