@wix/auto_sdk_calendar_schedules 1.0.110 → 1.0.112

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.
@@ -599,6 +599,10 @@ interface MetaSiteSpecialEvent extends MetaSiteSpecialEventPayloadOneOf {
599
599
  studioTwoAssigned?: StudioTwoAssigned;
600
600
  /** Emitted when StudioTwo is detached. */
601
601
  studioTwoUnassigned?: StudioTwoUnassigned;
602
+ /** Emitted when media from user domain is enabled. */
603
+ userDomainMediaEnabled?: UserDomainMediaEnabled;
604
+ /** Emitted when media from user domain is disabled. */
605
+ userDomainMediaDisabled?: UserDomainMediaDisabled;
602
606
  /**
603
607
  * A meta site id.
604
608
  * @format GUID
@@ -673,6 +677,10 @@ interface MetaSiteSpecialEventPayloadOneOf {
673
677
  studioTwoAssigned?: StudioTwoAssigned;
674
678
  /** Emitted when StudioTwo is detached. */
675
679
  studioTwoUnassigned?: StudioTwoUnassigned;
680
+ /** Emitted when media from user domain is enabled. */
681
+ userDomainMediaEnabled?: UserDomainMediaEnabled;
682
+ /** Emitted when media from user domain is disabled. */
683
+ userDomainMediaDisabled?: UserDomainMediaDisabled;
676
684
  }
677
685
  interface Asset {
678
686
  /**
@@ -1033,6 +1041,12 @@ interface StudioTwoAssigned {
1033
1041
  /** Unassigned StudioTwo */
1034
1042
  interface StudioTwoUnassigned {
1035
1043
  }
1044
+ /** Media from user domain is enabled. */
1045
+ interface UserDomainMediaEnabled {
1046
+ }
1047
+ /** Media from user domain is disabled. */
1048
+ interface UserDomainMediaDisabled {
1049
+ }
1036
1050
  interface Empty {
1037
1051
  }
1038
1052
  /** Encapsulates all details written to the Greyhound topic when a site's properties are updated. */
@@ -1527,6 +1541,15 @@ interface EventMetadata extends BaseEventMetadata {
1527
1541
  * You can use this number to make sure you're handling updates in the right order. Just save the latest sequence number on your end and compare it to the one in each new message. If the new message has an older (lower) number, you can safely ignore it.
1528
1542
  */
1529
1543
  entityEventSequence?: string | null;
1544
+ accountInfo?: AccountInfoMetadata;
1545
+ }
1546
+ interface AccountInfoMetadata {
1547
+ /** ID of the Wix account associated with the event */
1548
+ accountId: string;
1549
+ /** ID of the Wix site associated with the event. Only included when the event is tied to a specific site. */
1550
+ siteId?: string;
1551
+ /** ID of the parent Wix account. Only included when 'accountId' belongs to a child account. */
1552
+ parentAccountId?: string;
1530
1553
  }
1531
1554
  interface ScheduleCancelledEnvelope {
1532
1555
  data: ScheduleCancelled;
@@ -1542,8 +1565,6 @@ interface ScheduleCancelledEnvelope {
1542
1565
  * @permissionScopeId SCOPE.DC-BOOKINGS.MANAGE-BOOKINGS
1543
1566
  * @permissionScope Read Bookings - Including Participants
1544
1567
  * @permissionScopeId SCOPE.DC-BOOKINGS.READ-BOOKINGS-SENSITIVE
1545
- * @permissionScope Read Bookings - all read permissions
1546
- * @permissionScopeId SCOPE.DC-BOOKINGS-MEGA.READ-BOOKINGS
1547
1568
  * @permissionScope Manage Bookings - all permissions
1548
1569
  * @permissionScopeId SCOPE.DC-BOOKINGS-MEGA.MANAGE-BOOKINGS
1549
1570
  * @permissionScope Read bookings calendar - including participants
@@ -1569,8 +1590,6 @@ interface ScheduleClonedEnvelope {
1569
1590
  * @permissionScopeId SCOPE.DC-BOOKINGS.MANAGE-BOOKINGS
1570
1591
  * @permissionScope Read Bookings - Including Participants
1571
1592
  * @permissionScopeId SCOPE.DC-BOOKINGS.READ-BOOKINGS-SENSITIVE
1572
- * @permissionScope Read Bookings - all read permissions
1573
- * @permissionScopeId SCOPE.DC-BOOKINGS-MEGA.READ-BOOKINGS
1574
1593
  * @permissionScope Manage Bookings - all permissions
1575
1594
  * @permissionScopeId SCOPE.DC-BOOKINGS-MEGA.MANAGE-BOOKINGS
1576
1595
  * @permissionScope Read bookings calendar - including participants
@@ -1596,8 +1615,6 @@ interface ScheduleCreatedEnvelope {
1596
1615
  * @permissionScopeId SCOPE.DC-BOOKINGS.MANAGE-BOOKINGS
1597
1616
  * @permissionScope Read Bookings - Including Participants
1598
1617
  * @permissionScopeId SCOPE.DC-BOOKINGS.READ-BOOKINGS-SENSITIVE
1599
- * @permissionScope Read Bookings - all read permissions
1600
- * @permissionScopeId SCOPE.DC-BOOKINGS-MEGA.READ-BOOKINGS
1601
1618
  * @permissionScope Manage Bookings - all permissions
1602
1619
  * @permissionScopeId SCOPE.DC-BOOKINGS-MEGA.MANAGE-BOOKINGS
1603
1620
  * @permissionScope Read bookings calendar - including participants
@@ -1623,8 +1640,6 @@ interface ScheduleUpdatedEnvelope {
1623
1640
  * @permissionScopeId SCOPE.DC-BOOKINGS.MANAGE-BOOKINGS
1624
1641
  * @permissionScope Read Bookings - Including Participants
1625
1642
  * @permissionScopeId SCOPE.DC-BOOKINGS.READ-BOOKINGS-SENSITIVE
1626
- * @permissionScope Read Bookings - all read permissions
1627
- * @permissionScopeId SCOPE.DC-BOOKINGS-MEGA.READ-BOOKINGS
1628
1643
  * @permissionScope Manage Bookings - all permissions
1629
1644
  * @permissionScopeId SCOPE.DC-BOOKINGS-MEGA.MANAGE-BOOKINGS
1630
1645
  * @permissionScope Read bookings calendar - including participants
@@ -1999,4 +2014,4 @@ interface CancelScheduleOptions {
1999
2014
  participantNotification?: ParticipantNotification;
2000
2015
  }
2001
2016
 
2002
- export { type AccountInfo, type ActionEvent, type Address, type AddressHint, type Asset, type BaseEventMetadata, type BusinessSchedule, type CancelScheduleApplicationErrors, type CancelScheduleOptions, type CancelScheduleRequest, type CancelScheduleResponse, type Categories, type ChangeContext, type ChangeContextPayloadOneOf, type CloneScheduleRequest, type CloneScheduleResponse, type CommonIdentificationData, type CommonIdentificationDataIdOneOf, type CommonQueryWithEntityContext, type ConferencingDetails, type ConsentPolicy, type CreateScheduleOptions, type CreateScheduleRequest, type CreateScheduleResponse, type CursorPaging, type CursorPagingMetadata, type CursorQuery, type CursorQueryPagingMethodOneOf, type Cursors, DayOfWeek, type DayOfWeekWithLiterals, type DeleteContext, DeleteStatus, type DeleteStatusWithLiterals, type DomainEvent, type DomainEventBodyOneOf, type Empty, type EntityCreatedEvent, type EntityDeletedEvent, type EntityUpdatedEvent, type EventMetadata, type ExtendedFields, type GeoCoordinates, type GetScheduleOptions, type GetScheduleRequest, type GetScheduleResponse, type IdentificationData, type IdentificationDataIdOneOf, IdentityType, type IdentityTypeWithLiterals, type Locale, type Location, LocationType, type LocationTypeWithLiterals, type MessageEnvelope, type MetaSiteSpecialEvent, type MetaSiteSpecialEventPayloadOneOf, type Multilingual, Namespace, type NamespaceChanged, type NamespaceWithLiterals, type OdeditorAssigned, type OdeditorUnassigned, type ParticipantNotification, type Permission, type PicassoAssigned, type PicassoUnassigned, PlacementType, type PlacementTypeWithLiterals, type Properties, type PropertiesChange, type QuerySchedulesOptions, type QuerySchedulesRequest, type QuerySchedulesResponse, RequestedFields, type RequestedFieldsWithLiterals, ResolutionMethod, type ResolutionMethodWithLiterals, type RestoreInfo, Role, type RoleWithLiterals, type Schedule, type ScheduleCancelled, type ScheduleCancelledEnvelope, type ScheduleCloned, type ScheduleClonedEnvelope, type ScheduleCreatedEnvelope, type ScheduleQuery, type ScheduleQuerySpec, type ScheduleUpdatedEnvelope, type ScheduleUpdatedWithMetadata, type SchedulesQueryBuilder, type SchedulesQueryResult, type ServiceProvisioned, type ServiceRemoved, type SiteCloned, type SiteCreated, SiteCreatedContext, type SiteCreatedContextWithLiterals, type SiteDeleted, type SiteHardDeleted, type SiteMarkedAsTemplate, type SiteMarkedAsWixSite, type SitePropertiesEvent, type SitePropertiesNotification, type SitePublished, type SitePurgedExternally, type SiteRenamed, type SiteTransferred, type SiteUndeleted, type SiteUnpublished, type SiteUrlChanged, type SpecialHourPeriod, State, type StateWithLiterals, Status, type StatusWithLiterals, type StudioAssigned, type StudioTwoAssigned, type StudioTwoUnassigned, type StudioUnassigned, type SupportedLanguage, type TimePeriod, type Translation, Trigger, type TriggerWithLiterals, Type, type TypeWithLiterals, type UpdateSchedule, type UpdateScheduleApplicationErrors, type UpdateScheduleOptions, type UpdateScheduleRequest, type UpdateScheduleResponse, type V4SiteCreated, WebhookIdentityType, type WebhookIdentityTypeWithLiterals, type WixelAssigned, type WixelUnassigned, cancelSchedule, createSchedule, getSchedule, onScheduleCancelled, onScheduleCloned, onScheduleCreated, onScheduleUpdated, querySchedules, typedQuerySchedules, updateSchedule };
2017
+ export { type AccountInfo, type ActionEvent, type Address, type AddressHint, type Asset, type BaseEventMetadata, type BusinessSchedule, type CancelScheduleApplicationErrors, type CancelScheduleOptions, type CancelScheduleRequest, type CancelScheduleResponse, type Categories, type ChangeContext, type ChangeContextPayloadOneOf, type CloneScheduleRequest, type CloneScheduleResponse, type CommonIdentificationData, type CommonIdentificationDataIdOneOf, type CommonQueryWithEntityContext, type ConferencingDetails, type ConsentPolicy, type CreateScheduleOptions, type CreateScheduleRequest, type CreateScheduleResponse, type CursorPaging, type CursorPagingMetadata, type CursorQuery, type CursorQueryPagingMethodOneOf, type Cursors, DayOfWeek, type DayOfWeekWithLiterals, type DeleteContext, DeleteStatus, type DeleteStatusWithLiterals, type DomainEvent, type DomainEventBodyOneOf, type Empty, type EntityCreatedEvent, type EntityDeletedEvent, type EntityUpdatedEvent, type EventMetadata, type ExtendedFields, type GeoCoordinates, type GetScheduleOptions, type GetScheduleRequest, type GetScheduleResponse, type IdentificationData, type IdentificationDataIdOneOf, IdentityType, type IdentityTypeWithLiterals, type Locale, type Location, LocationType, type LocationTypeWithLiterals, type MessageEnvelope, type MetaSiteSpecialEvent, type MetaSiteSpecialEventPayloadOneOf, type Multilingual, Namespace, type NamespaceChanged, type NamespaceWithLiterals, type OdeditorAssigned, type OdeditorUnassigned, type ParticipantNotification, type Permission, type PicassoAssigned, type PicassoUnassigned, PlacementType, type PlacementTypeWithLiterals, type Properties, type PropertiesChange, type QuerySchedulesOptions, type QuerySchedulesRequest, type QuerySchedulesResponse, RequestedFields, type RequestedFieldsWithLiterals, ResolutionMethod, type ResolutionMethodWithLiterals, type RestoreInfo, Role, type RoleWithLiterals, type Schedule, type ScheduleCancelled, type ScheduleCancelledEnvelope, type ScheduleCloned, type ScheduleClonedEnvelope, type ScheduleCreatedEnvelope, type ScheduleQuery, type ScheduleQuerySpec, type ScheduleUpdatedEnvelope, type ScheduleUpdatedWithMetadata, type SchedulesQueryBuilder, type SchedulesQueryResult, type ServiceProvisioned, type ServiceRemoved, type SiteCloned, type SiteCreated, SiteCreatedContext, type SiteCreatedContextWithLiterals, type SiteDeleted, type SiteHardDeleted, type SiteMarkedAsTemplate, type SiteMarkedAsWixSite, type SitePropertiesEvent, type SitePropertiesNotification, type SitePublished, type SitePurgedExternally, type SiteRenamed, type SiteTransferred, type SiteUndeleted, type SiteUnpublished, type SiteUrlChanged, type SpecialHourPeriod, State, type StateWithLiterals, Status, type StatusWithLiterals, type StudioAssigned, type StudioTwoAssigned, type StudioTwoUnassigned, type StudioUnassigned, type SupportedLanguage, type TimePeriod, type Translation, Trigger, type TriggerWithLiterals, Type, type TypeWithLiterals, type UpdateSchedule, type UpdateScheduleApplicationErrors, type UpdateScheduleOptions, type UpdateScheduleRequest, type UpdateScheduleResponse, type UserDomainMediaDisabled, type UserDomainMediaEnabled, type V4SiteCreated, WebhookIdentityType, type WebhookIdentityTypeWithLiterals, type WixelAssigned, type WixelUnassigned, cancelSchedule, createSchedule, getSchedule, onScheduleCancelled, onScheduleCloned, onScheduleCreated, onScheduleUpdated, querySchedules, typedQuerySchedules, updateSchedule };