@wix/table-reservations 1.0.151 → 1.0.152

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/table-reservations",
3
- "version": "1.0.151",
3
+ "version": "1.0.152",
4
4
  "publishConfig": {
5
5
  "registry": "https://registry.npmjs.org/",
6
6
  "access": "public"
@@ -18,7 +18,7 @@
18
18
  "type-bundles"
19
19
  ],
20
20
  "dependencies": {
21
- "@wix/table-reservations_reservation-locations": "1.0.63",
21
+ "@wix/table-reservations_reservation-locations": "1.0.64",
22
22
  "@wix/table-reservations_reservations": "1.0.51",
23
23
  "@wix/table-reservations_time-slots": "1.0.46"
24
24
  },
@@ -45,5 +45,5 @@
45
45
  "fqdn": ""
46
46
  }
47
47
  },
48
- "falconPackageHash": "2e8815a05b88d84d0eb046180fe7354e75d551a9ef4d9c3948afd22b"
48
+ "falconPackageHash": "3ec7b7fee5c36f7f6d8fddba70c68785db63990b23f4a161d1607f42"
49
49
  }
@@ -2911,6 +2911,8 @@ interface ReservationLocationViolation extends ReservationLocationViolationViola
2911
2911
  myReservationsFieldsDuplicationViolation?: MyReservationsFieldsDuplicationViolation;
2912
2912
  /** Business schedule special hour period end date is before or equal to start date violation. */
2913
2913
  businessScheduleSpecialHourPeriodEndBeforeStartViolation?: BusinessScheduleSpecialHourPeriodEndBeforeStartViolation;
2914
+ /** Business schedule time period close day and time before open day and time violation. */
2915
+ businessScheduleTimePeriodCloseBeforeOpenViolation?: BusinessScheduleTimePeriodCloseBeforeOpenViolation;
2914
2916
  /** Type of the violation. */
2915
2917
  type?: Type$1;
2916
2918
  }
@@ -2964,6 +2966,8 @@ interface ReservationLocationViolationViolationOneOf {
2964
2966
  myReservationsFieldsDuplicationViolation?: MyReservationsFieldsDuplicationViolation;
2965
2967
  /** Business schedule special hour period end date is before or equal to start date violation. */
2966
2968
  businessScheduleSpecialHourPeriodEndBeforeStartViolation?: BusinessScheduleSpecialHourPeriodEndBeforeStartViolation;
2969
+ /** Business schedule time period close day and time before open day and time violation. */
2970
+ businessScheduleTimePeriodCloseBeforeOpenViolation?: BusinessScheduleTimePeriodCloseBeforeOpenViolation;
2967
2971
  }
2968
2972
  interface DuplicatedName {
2969
2973
  /** Duplicated field name. */
@@ -3041,7 +3045,8 @@ declare enum Type$1 {
3041
3045
  DEFAULT_TURNOVER_TIME_ABSENT = "DEFAULT_TURNOVER_TIME_ABSENT",
3042
3046
  NOT_ALL_RESERVATION_FIELDS = "NOT_ALL_RESERVATION_FIELDS",
3043
3047
  TABLE_DEFINITION_INCORRECT_BOUNDARIES = "TABLE_DEFINITION_INCORRECT_BOUNDARIES",
3044
- BUSINESS_SCHEDULE_SPECIAL_HOUR_PERIOD_END_BEFORE_START = "BUSINESS_SCHEDULE_SPECIAL_HOUR_PERIOD_END_BEFORE_START"
3048
+ BUSINESS_SCHEDULE_SPECIAL_HOUR_PERIOD_END_BEFORE_START = "BUSINESS_SCHEDULE_SPECIAL_HOUR_PERIOD_END_BEFORE_START",
3049
+ BUSINESS_SCHEDULE_TIME_PERIOD_CLOSE_BEFORE_OPEN = "BUSINESS_SCHEDULE_TIME_PERIOD_CLOSE_BEFORE_OPEN"
3045
3050
  }
3046
3051
  interface NotAllReservationFieldsViolation {
3047
3052
  /** Field types that are absent. */
@@ -3141,6 +3146,10 @@ interface BusinessScheduleSpecialHourPeriodEndBeforeStartViolation {
3141
3146
  /** Positions of invalid special hour periods in array. */
3142
3147
  indexes?: number[];
3143
3148
  }
3149
+ interface BusinessScheduleTimePeriodCloseBeforeOpenViolation {
3150
+ /** Positions of invalid time periods in array. */
3151
+ indexes?: number[];
3152
+ }
3144
3153
  interface UpdateExtendedFieldsRequest {
3145
3154
  /** ID of the entity to update. */
3146
3155
  _id: string;
@@ -4914,6 +4923,7 @@ type context$1_BooleanFeature = BooleanFeature;
4914
4923
  type context$1_BusinessSchedule = BusinessSchedule;
4915
4924
  type context$1_BusinessScheduleSpecialHourPeriodEndBeforeStartViolation = BusinessScheduleSpecialHourPeriodEndBeforeStartViolation;
4916
4925
  type context$1_BusinessScheduleSpecialHourPeriodInvalidViolation = BusinessScheduleSpecialHourPeriodInvalidViolation;
4926
+ type context$1_BusinessScheduleTimePeriodCloseBeforeOpenViolation = BusinessScheduleTimePeriodCloseBeforeOpenViolation;
4917
4927
  type context$1_BusinessScheduleTimePeriodInvalidViolation = BusinessScheduleTimePeriodInvalidViolation;
4918
4928
  type context$1_CancelRequestedReason = CancelRequestedReason;
4919
4929
  type context$1_Categories = Categories;
@@ -5144,7 +5154,7 @@ declare const context$1_queryReservationLocations: typeof queryReservationLocati
5144
5154
  declare const context$1_updateExtendedFields: typeof updateExtendedFields;
5145
5155
  declare const context$1_updateReservationLocation: typeof updateReservationLocation;
5146
5156
  declare namespace context$1 {
5147
- export { type context$1_ActionEvent as ActionEvent, type context$1_Address as Address, type context$1_AddressHint as AddressHint, type context$1_AddressLocation as AddressLocation, type context$1_App as App, type context$1_Approval as Approval, context$1_ApprovalMode as ApprovalMode, type context$1_ApprovalOptionsOneOf as ApprovalOptionsOneOf, type context$1_Asset as Asset, type context$1_AssignedFromFloatingReason as AssignedFromFloatingReason, type context$1_BaseEventMetadata as BaseEventMetadata, type context$1_BooleanFeature as BooleanFeature, type context$1_BusinessSchedule as BusinessSchedule, type context$1_BusinessScheduleSpecialHourPeriodEndBeforeStartViolation as BusinessScheduleSpecialHourPeriodEndBeforeStartViolation, type context$1_BusinessScheduleSpecialHourPeriodInvalidViolation as BusinessScheduleSpecialHourPeriodInvalidViolation, type context$1_BusinessScheduleTimePeriodInvalidViolation as BusinessScheduleTimePeriodInvalidViolation, type context$1_CancelRequestedReason as CancelRequestedReason, type context$1_Categories as Categories, type context$1_ChangeContext as ChangeContext, type context$1_ChangeContextPayloadOneOf as ChangeContextPayloadOneOf, type context$1_CheckReservationLocationsCreatedRequest as CheckReservationLocationsCreatedRequest, type context$1_CheckReservationLocationsCreatedResponse as CheckReservationLocationsCreatedResponse, type context$1_CommonBusinessSchedule as CommonBusinessSchedule, context$1_CommonDayOfWeek as CommonDayOfWeek, type context$1_CommonSpecialHourPeriod as CommonSpecialHourPeriod, type context$1_CommonTimePeriod as CommonTimePeriod, type context$1_Configuration as Configuration, type context$1_ConsentPolicy as ConsentPolicy, type context$1_ContractSwitchedReason as ContractSwitchedReason, type context$1_CursorPaging as CursorPaging, type context$1_CursorPagingMetadata as CursorPagingMetadata, type context$1_Cursors as Cursors, type context$1_CustomFieldDefinition as CustomFieldDefinition, type context$1_CustomFieldIdsDuplicationViolation as CustomFieldIdsDuplicationViolation, type context$1_CustomFieldNamesDuplicationViolation as CustomFieldNamesDuplicationViolation, context$1_DayOfWeek as DayOfWeek, type context$1_DeleteContext as DeleteContext, type context$1_DeleteOrphanReservationLocationRequest as DeleteOrphanReservationLocationRequest, type context$1_DeleteOrphanReservationLocationResponse as DeleteOrphanReservationLocationResponse, context$1_DeleteStatus as DeleteStatus, type context$1_DomainEvent as DomainEvent, type context$1_DomainEventBodyOneOf as DomainEventBodyOneOf, type context$1_DuplicatedId as DuplicatedId, type context$1_DuplicatedName as DuplicatedName, type context$1_EmailMarketingCheckbox as EmailMarketingCheckbox, type context$1_Empty as Empty, type context$1_EntityCreatedEvent as EntityCreatedEvent, type context$1_EntityDeletedEvent as EntityDeletedEvent, type context$1_EntityUpdatedEvent as EntityUpdatedEvent, type context$1_EventMetadata as EventMetadata, type context$1_ExtendedFields as ExtendedFields, type context$1_Feature as Feature, type context$1_FeatureCancelled as FeatureCancelled, type context$1_FeatureCancelledReasonOneOf as FeatureCancelledReasonOneOf, type context$1_FeatureContext as FeatureContext, type context$1_FeatureDisabled as FeatureDisabled, type context$1_FeatureDisabledReasonOneOf as FeatureDisabledReasonOneOf, type context$1_FeatureEnabled as FeatureEnabled, type context$1_FeatureEnabledReasonOneOf as FeatureEnabledReasonOneOf, type context$1_FeatureEvent as FeatureEvent, type context$1_FeatureEventEventOneOf as FeatureEventEventOneOf, context$1_FeaturePeriod as FeaturePeriod, type context$1_FeatureQuantityInfoOneOf as FeatureQuantityInfoOneOf, type context$1_FeatureUpdated as FeatureUpdated, type context$1_FeatureUpdatedPreviousQuantityInfoOneOf as FeatureUpdatedPreviousQuantityInfoOneOf, type context$1_FeatureUpdatedReasonOneOf as FeatureUpdatedReasonOneOf, context$1_FieldType as FieldType, type context$1_File as File, type context$1_GeoCoordinates as GeoCoordinates, type context$1_GetReservationLocationOptions as GetReservationLocationOptions, type context$1_GetReservationLocationRequest as GetReservationLocationRequest, type context$1_GetReservationLocationResponse as GetReservationLocationResponse, type context$1_GetReservationLocationResponseNonNullableFields as GetReservationLocationResponseNonNullableFields, type context$1_IdentificationData as IdentificationData, type context$1_IdentificationDataIdOneOf as IdentificationDataIdOneOf, type context$1_InvalidateCache as InvalidateCache, type context$1_InvalidateCacheGetByOneOf as InvalidateCacheGetByOneOf, type context$1_ListReservationLocationsOptions as ListReservationLocationsOptions, type context$1_ListReservationLocationsRequest as ListReservationLocationsRequest, type context$1_ListReservationLocationsResponse as ListReservationLocationsResponse, type context$1_ListReservationLocationsResponseNonNullableFields as ListReservationLocationsResponseNonNullableFields, type context$1_Locale as Locale, type context$1_Location as Location, type context$1_LocationAddress as LocationAddress, type context$1_ManualApproval as ManualApproval, type context$1_ManualApprovalValueOneOf as ManualApprovalValueOneOf, type context$1_ManualFeatureCreationReason as ManualFeatureCreationReason, type context$1_ManualForLargePartiesOptions as ManualForLargePartiesOptions, type context$1_MessageEnvelope as MessageEnvelope, type context$1_MetaSiteSpecialEvent as MetaSiteSpecialEvent, type context$1_MetaSiteSpecialEventPayloadOneOf as MetaSiteSpecialEventPayloadOneOf, type context$1_MigrateOldRestaurantSettingsRequest as MigrateOldRestaurantSettingsRequest, type context$1_MigrateOldRestaurantSettingsResponse as MigrateOldRestaurantSettingsResponse, type context$1_MigratedFromLegacyReason as MigratedFromLegacyReason, type context$1_MigrationParsingError as MigrationParsingError, type context$1_MigrationResult as MigrationResult, context$1_Mode as Mode, type context$1_Multilingual as Multilingual, type context$1_MyReservationsField as MyReservationsField, type context$1_MyReservationsFieldsDuplicationViolation as MyReservationsFieldsDuplicationViolation, context$1_Namespace as Namespace, type context$1_NamespaceChanged as NamespaceChanged, type context$1_NewFeatureReason as NewFeatureReason, type context$1_NonExistentTablesInTableCombinationViolation as NonExistentTablesInTableCombinationViolation, type context$1_NonExistentTablesInTableCombinationViolationViolation as NonExistentTablesInTableCombinationViolationViolation, type context$1_NotAllReservationFieldsViolation as NotAllReservationFieldsViolation, type context$1_NoticePeriod as NoticePeriod, type context$1_OldCustomField as OldCustomField, type context$1_OldInstant as OldInstant, type context$1_OldPolicy as OldPolicy, type context$1_OldScheduleException as OldScheduleException, type context$1_OldScheduleInterval as OldScheduleInterval, type context$1_OldTerms as OldTerms, type context$1_OnlineReservations as OnlineReservations, type context$1_Page as Page, type context$1_Paging as Paging, type context$1_PagingMetadataV2 as PagingMetadataV2, type context$1_ParsedSettings as ParsedSettings, type context$1_PartiesSize as PartiesSize, type context$1_PartyPacing as PartyPacing, type context$1_PartySize as PartySize, context$1_PlacementType as PlacementType, type context$1_PrivacyPolicy as PrivacyPolicy, type context$1_PrivacyPolicyValueOneOf as PrivacyPolicyValueOneOf, type context$1_Properties as Properties, type context$1_PropertiesChange as PropertiesChange, type context$1_QueryReservationLocationsOptions as QueryReservationLocationsOptions, type context$1_QueryReservationLocationsRequest as QueryReservationLocationsRequest, type context$1_QueryReservationLocationsResponse as QueryReservationLocationsResponse, type context$1_QueryReservationLocationsResponseNonNullableFields as QueryReservationLocationsResponseNonNullableFields, type context$1_QueryV2 as QueryV2, type context$1_QueryV2PagingMethodOneOf as QueryV2PagingMethodOneOf, type context$1_QuotaFeature as QuotaFeature, type context$1_QuotaInfo as QuotaInfo, type context$1_ReassignedFromSiteReason as ReassignedFromSiteReason, type context$1_ReassignedToAnotherSiteReason as ReassignedToAnotherSiteReason, type context$1_ReplacedByAnotherSubscriptionReason as ReplacedByAnotherSubscriptionReason, type context$1_ReservationFieldMustHaveTypeViolation as ReservationFieldMustHaveTypeViolation, type context$1_ReservationFieldNotExistViolation as ReservationFieldNotExistViolation, type context$1_ReservationForm as ReservationForm, type context$1_ReservationLocation as ReservationLocation, type context$1_ReservationLocationCreatedEnvelope as ReservationLocationCreatedEnvelope, type context$1_ReservationLocationNonNullableFields as ReservationLocationNonNullableFields, type context$1_ReservationLocationUpdatedEnvelope as ReservationLocationUpdatedEnvelope, type context$1_ReservationLocationViolation as ReservationLocationViolation, type context$1_ReservationLocationViolationViolationOneOf as ReservationLocationViolationViolationOneOf, type context$1_ReservationLocationsQueryBuilder as ReservationLocationsQueryBuilder, type context$1_ReservationLocationsQueryResult as ReservationLocationsQueryResult, type context$1_ReservationPayment as ReservationPayment, context$1_ResolutionMethod as ResolutionMethod, type context$1_RestoreInfo as RestoreInfo, type context$1_SeatPacing as SeatPacing, type context$1_ServiceProvisioned as ServiceProvisioned, type context$1_ServiceRemoved as ServiceRemoved, context$1_Set as Set, type context$1_SiteCloned as SiteCloned, type context$1_SiteCreated as SiteCreated, context$1_SiteCreatedContext as SiteCreatedContext, type context$1_SiteDeleted as SiteDeleted, type context$1_SiteHardDeleted as SiteHardDeleted, type context$1_SiteMarkedAsTemplate as SiteMarkedAsTemplate, type context$1_SiteMarkedAsWixSite as SiteMarkedAsWixSite, type context$1_SitePropertiesEvent as SitePropertiesEvent, type context$1_SitePropertiesNotification as SitePropertiesNotification, type context$1_SitePublished as SitePublished, type context$1_SiteRenamed as SiteRenamed, type context$1_SiteTransferred as SiteTransferred, type context$1_SiteUndeleted as SiteUndeleted, type context$1_SiteUnpublished as SiteUnpublished, context$1_SortOrder as SortOrder, type context$1_Sorting as Sorting, type context$1_SpecialHourPeriod as SpecialHourPeriod, context$1_State as State, type context$1_StreetAddress as StreetAddress, type context$1_StudioAssigned as StudioAssigned, type context$1_StudioUnassigned as StudioUnassigned, type context$1_SupportedLanguage as SupportedLanguage, type TableCombination$1 as TableCombination, type context$1_TableCombinationContainsLessThan2TablesViolation as TableCombinationContainsLessThan2TablesViolation, type context$1_TableCombinationIdsDuplicationViolation as TableCombinationIdsDuplicationViolation, type context$1_TableCombinationIdsDuplicationViolationViolation as TableCombinationIdsDuplicationViolationViolation, type context$1_TableCombinationMinMaxSeatsViolation as TableCombinationMinMaxSeatsViolation, type context$1_TableCombinationNotExistViolation as TableCombinationNotExistViolation, type context$1_TableCombinationTableIdsCombinationDuplicationViolation as TableCombinationTableIdsCombinationDuplicationViolation, type context$1_TableCombinationTableIdsDuplicationViolation as TableCombinationTableIdsDuplicationViolation, type context$1_TableCombinationTableIdsDuplicationViolationViolation as TableCombinationTableIdsDuplicationViolationViolation, type context$1_TableDefinition as TableDefinition, type context$1_TableDefinitionIdsDuplicationViolation as TableDefinitionIdsDuplicationViolation, type context$1_TableDefinitionIncorrectBoundariesViolation as TableDefinitionIncorrectBoundariesViolation, type context$1_TableDefinitionNamesDuplicationViolation as TableDefinitionNamesDuplicationViolation, type context$1_TableDefinitionNotExistViolation as TableDefinitionNotExistViolation, type context$1_TableManagement as TableManagement, type context$1_TablesDeleted as TablesDeleted, type context$1_TermsAndConditions as TermsAndConditions, type context$1_TermsAndConditionsValueOneOf as TermsAndConditionsValueOneOf, type context$1_TimePeriod as TimePeriod, type context$1_TransferredFromAnotherAccountReason as TransferredFromAnotherAccountReason, type context$1_TransferredToAnotherAccountReason as TransferredToAnotherAccountReason, type context$1_Translation as Translation, type context$1_TurnoverRule as TurnoverRule, type context$1_TurnoverRulesIncorrectBoundariesViolation as TurnoverRulesIncorrectBoundariesViolation, type context$1_TurnoverRulesIntersectViolation as TurnoverRulesIntersectViolation, type context$1_TurnoverTimeRule as TurnoverTimeRule, type context$1_TurnoverTimeRulesIncorrectBoundariesViolation as TurnoverTimeRulesIncorrectBoundariesViolation, type context$1_TurnoverTimeRulesIntersectViolation as TurnoverTimeRulesIntersectViolation, Type$1 as Type, type context$1_URI as URI, type context$1_UnAssingedToFloatingReason as UnAssingedToFloatingReason, context$1_Unit as Unit, type context$1_UpdateExtendedFieldsOptions as UpdateExtendedFieldsOptions, type context$1_UpdateExtendedFieldsRequest as UpdateExtendedFieldsRequest, type context$1_UpdateExtendedFieldsResponse as UpdateExtendedFieldsResponse, type context$1_UpdateExtendedFieldsResponseNonNullableFields as UpdateExtendedFieldsResponseNonNullableFields, type context$1_UpdateReservationLocation as UpdateReservationLocation, type context$1_UpdateReservationLocationRequest as UpdateReservationLocationRequest, type context$1_UpdateReservationLocationResponse as UpdateReservationLocationResponse, type context$1_UpdateReservationLocationResponseNonNullableFields as UpdateReservationLocationResponseNonNullableFields, type context$1_V4SiteCreated as V4SiteCreated, context$1_Value as Value, type context$1_Violation as Violation, context$1_WebhookIdentityType as WebhookIdentityType, type context$1__publicOnReservationLocationCreatedType as _publicOnReservationLocationCreatedType, type context$1__publicOnReservationLocationUpdatedType as _publicOnReservationLocationUpdatedType, context$1_getReservationLocation as getReservationLocation, context$1_listReservationLocations as listReservationLocations, context$1_onReservationLocationCreated as onReservationLocationCreated, context$1_onReservationLocationUpdated as onReservationLocationUpdated, onReservationLocationCreated$1 as publicOnReservationLocationCreated, onReservationLocationUpdated$1 as publicOnReservationLocationUpdated, context$1_queryReservationLocations as queryReservationLocations, context$1_updateExtendedFields as updateExtendedFields, context$1_updateReservationLocation as updateReservationLocation };
5157
+ export { type context$1_ActionEvent as ActionEvent, type context$1_Address as Address, type context$1_AddressHint as AddressHint, type context$1_AddressLocation as AddressLocation, type context$1_App as App, type context$1_Approval as Approval, context$1_ApprovalMode as ApprovalMode, type context$1_ApprovalOptionsOneOf as ApprovalOptionsOneOf, type context$1_Asset as Asset, type context$1_AssignedFromFloatingReason as AssignedFromFloatingReason, type context$1_BaseEventMetadata as BaseEventMetadata, type context$1_BooleanFeature as BooleanFeature, type context$1_BusinessSchedule as BusinessSchedule, type context$1_BusinessScheduleSpecialHourPeriodEndBeforeStartViolation as BusinessScheduleSpecialHourPeriodEndBeforeStartViolation, type context$1_BusinessScheduleSpecialHourPeriodInvalidViolation as BusinessScheduleSpecialHourPeriodInvalidViolation, type context$1_BusinessScheduleTimePeriodCloseBeforeOpenViolation as BusinessScheduleTimePeriodCloseBeforeOpenViolation, type context$1_BusinessScheduleTimePeriodInvalidViolation as BusinessScheduleTimePeriodInvalidViolation, type context$1_CancelRequestedReason as CancelRequestedReason, type context$1_Categories as Categories, type context$1_ChangeContext as ChangeContext, type context$1_ChangeContextPayloadOneOf as ChangeContextPayloadOneOf, type context$1_CheckReservationLocationsCreatedRequest as CheckReservationLocationsCreatedRequest, type context$1_CheckReservationLocationsCreatedResponse as CheckReservationLocationsCreatedResponse, type context$1_CommonBusinessSchedule as CommonBusinessSchedule, context$1_CommonDayOfWeek as CommonDayOfWeek, type context$1_CommonSpecialHourPeriod as CommonSpecialHourPeriod, type context$1_CommonTimePeriod as CommonTimePeriod, type context$1_Configuration as Configuration, type context$1_ConsentPolicy as ConsentPolicy, type context$1_ContractSwitchedReason as ContractSwitchedReason, type context$1_CursorPaging as CursorPaging, type context$1_CursorPagingMetadata as CursorPagingMetadata, type context$1_Cursors as Cursors, type context$1_CustomFieldDefinition as CustomFieldDefinition, type context$1_CustomFieldIdsDuplicationViolation as CustomFieldIdsDuplicationViolation, type context$1_CustomFieldNamesDuplicationViolation as CustomFieldNamesDuplicationViolation, context$1_DayOfWeek as DayOfWeek, type context$1_DeleteContext as DeleteContext, type context$1_DeleteOrphanReservationLocationRequest as DeleteOrphanReservationLocationRequest, type context$1_DeleteOrphanReservationLocationResponse as DeleteOrphanReservationLocationResponse, context$1_DeleteStatus as DeleteStatus, type context$1_DomainEvent as DomainEvent, type context$1_DomainEventBodyOneOf as DomainEventBodyOneOf, type context$1_DuplicatedId as DuplicatedId, type context$1_DuplicatedName as DuplicatedName, type context$1_EmailMarketingCheckbox as EmailMarketingCheckbox, type context$1_Empty as Empty, type context$1_EntityCreatedEvent as EntityCreatedEvent, type context$1_EntityDeletedEvent as EntityDeletedEvent, type context$1_EntityUpdatedEvent as EntityUpdatedEvent, type context$1_EventMetadata as EventMetadata, type context$1_ExtendedFields as ExtendedFields, type context$1_Feature as Feature, type context$1_FeatureCancelled as FeatureCancelled, type context$1_FeatureCancelledReasonOneOf as FeatureCancelledReasonOneOf, type context$1_FeatureContext as FeatureContext, type context$1_FeatureDisabled as FeatureDisabled, type context$1_FeatureDisabledReasonOneOf as FeatureDisabledReasonOneOf, type context$1_FeatureEnabled as FeatureEnabled, type context$1_FeatureEnabledReasonOneOf as FeatureEnabledReasonOneOf, type context$1_FeatureEvent as FeatureEvent, type context$1_FeatureEventEventOneOf as FeatureEventEventOneOf, context$1_FeaturePeriod as FeaturePeriod, type context$1_FeatureQuantityInfoOneOf as FeatureQuantityInfoOneOf, type context$1_FeatureUpdated as FeatureUpdated, type context$1_FeatureUpdatedPreviousQuantityInfoOneOf as FeatureUpdatedPreviousQuantityInfoOneOf, type context$1_FeatureUpdatedReasonOneOf as FeatureUpdatedReasonOneOf, context$1_FieldType as FieldType, type context$1_File as File, type context$1_GeoCoordinates as GeoCoordinates, type context$1_GetReservationLocationOptions as GetReservationLocationOptions, type context$1_GetReservationLocationRequest as GetReservationLocationRequest, type context$1_GetReservationLocationResponse as GetReservationLocationResponse, type context$1_GetReservationLocationResponseNonNullableFields as GetReservationLocationResponseNonNullableFields, type context$1_IdentificationData as IdentificationData, type context$1_IdentificationDataIdOneOf as IdentificationDataIdOneOf, type context$1_InvalidateCache as InvalidateCache, type context$1_InvalidateCacheGetByOneOf as InvalidateCacheGetByOneOf, type context$1_ListReservationLocationsOptions as ListReservationLocationsOptions, type context$1_ListReservationLocationsRequest as ListReservationLocationsRequest, type context$1_ListReservationLocationsResponse as ListReservationLocationsResponse, type context$1_ListReservationLocationsResponseNonNullableFields as ListReservationLocationsResponseNonNullableFields, type context$1_Locale as Locale, type context$1_Location as Location, type context$1_LocationAddress as LocationAddress, type context$1_ManualApproval as ManualApproval, type context$1_ManualApprovalValueOneOf as ManualApprovalValueOneOf, type context$1_ManualFeatureCreationReason as ManualFeatureCreationReason, type context$1_ManualForLargePartiesOptions as ManualForLargePartiesOptions, type context$1_MessageEnvelope as MessageEnvelope, type context$1_MetaSiteSpecialEvent as MetaSiteSpecialEvent, type context$1_MetaSiteSpecialEventPayloadOneOf as MetaSiteSpecialEventPayloadOneOf, type context$1_MigrateOldRestaurantSettingsRequest as MigrateOldRestaurantSettingsRequest, type context$1_MigrateOldRestaurantSettingsResponse as MigrateOldRestaurantSettingsResponse, type context$1_MigratedFromLegacyReason as MigratedFromLegacyReason, type context$1_MigrationParsingError as MigrationParsingError, type context$1_MigrationResult as MigrationResult, context$1_Mode as Mode, type context$1_Multilingual as Multilingual, type context$1_MyReservationsField as MyReservationsField, type context$1_MyReservationsFieldsDuplicationViolation as MyReservationsFieldsDuplicationViolation, context$1_Namespace as Namespace, type context$1_NamespaceChanged as NamespaceChanged, type context$1_NewFeatureReason as NewFeatureReason, type context$1_NonExistentTablesInTableCombinationViolation as NonExistentTablesInTableCombinationViolation, type context$1_NonExistentTablesInTableCombinationViolationViolation as NonExistentTablesInTableCombinationViolationViolation, type context$1_NotAllReservationFieldsViolation as NotAllReservationFieldsViolation, type context$1_NoticePeriod as NoticePeriod, type context$1_OldCustomField as OldCustomField, type context$1_OldInstant as OldInstant, type context$1_OldPolicy as OldPolicy, type context$1_OldScheduleException as OldScheduleException, type context$1_OldScheduleInterval as OldScheduleInterval, type context$1_OldTerms as OldTerms, type context$1_OnlineReservations as OnlineReservations, type context$1_Page as Page, type context$1_Paging as Paging, type context$1_PagingMetadataV2 as PagingMetadataV2, type context$1_ParsedSettings as ParsedSettings, type context$1_PartiesSize as PartiesSize, type context$1_PartyPacing as PartyPacing, type context$1_PartySize as PartySize, context$1_PlacementType as PlacementType, type context$1_PrivacyPolicy as PrivacyPolicy, type context$1_PrivacyPolicyValueOneOf as PrivacyPolicyValueOneOf, type context$1_Properties as Properties, type context$1_PropertiesChange as PropertiesChange, type context$1_QueryReservationLocationsOptions as QueryReservationLocationsOptions, type context$1_QueryReservationLocationsRequest as QueryReservationLocationsRequest, type context$1_QueryReservationLocationsResponse as QueryReservationLocationsResponse, type context$1_QueryReservationLocationsResponseNonNullableFields as QueryReservationLocationsResponseNonNullableFields, type context$1_QueryV2 as QueryV2, type context$1_QueryV2PagingMethodOneOf as QueryV2PagingMethodOneOf, type context$1_QuotaFeature as QuotaFeature, type context$1_QuotaInfo as QuotaInfo, type context$1_ReassignedFromSiteReason as ReassignedFromSiteReason, type context$1_ReassignedToAnotherSiteReason as ReassignedToAnotherSiteReason, type context$1_ReplacedByAnotherSubscriptionReason as ReplacedByAnotherSubscriptionReason, type context$1_ReservationFieldMustHaveTypeViolation as ReservationFieldMustHaveTypeViolation, type context$1_ReservationFieldNotExistViolation as ReservationFieldNotExistViolation, type context$1_ReservationForm as ReservationForm, type context$1_ReservationLocation as ReservationLocation, type context$1_ReservationLocationCreatedEnvelope as ReservationLocationCreatedEnvelope, type context$1_ReservationLocationNonNullableFields as ReservationLocationNonNullableFields, type context$1_ReservationLocationUpdatedEnvelope as ReservationLocationUpdatedEnvelope, type context$1_ReservationLocationViolation as ReservationLocationViolation, type context$1_ReservationLocationViolationViolationOneOf as ReservationLocationViolationViolationOneOf, type context$1_ReservationLocationsQueryBuilder as ReservationLocationsQueryBuilder, type context$1_ReservationLocationsQueryResult as ReservationLocationsQueryResult, type context$1_ReservationPayment as ReservationPayment, context$1_ResolutionMethod as ResolutionMethod, type context$1_RestoreInfo as RestoreInfo, type context$1_SeatPacing as SeatPacing, type context$1_ServiceProvisioned as ServiceProvisioned, type context$1_ServiceRemoved as ServiceRemoved, context$1_Set as Set, type context$1_SiteCloned as SiteCloned, type context$1_SiteCreated as SiteCreated, context$1_SiteCreatedContext as SiteCreatedContext, type context$1_SiteDeleted as SiteDeleted, type context$1_SiteHardDeleted as SiteHardDeleted, type context$1_SiteMarkedAsTemplate as SiteMarkedAsTemplate, type context$1_SiteMarkedAsWixSite as SiteMarkedAsWixSite, type context$1_SitePropertiesEvent as SitePropertiesEvent, type context$1_SitePropertiesNotification as SitePropertiesNotification, type context$1_SitePublished as SitePublished, type context$1_SiteRenamed as SiteRenamed, type context$1_SiteTransferred as SiteTransferred, type context$1_SiteUndeleted as SiteUndeleted, type context$1_SiteUnpublished as SiteUnpublished, context$1_SortOrder as SortOrder, type context$1_Sorting as Sorting, type context$1_SpecialHourPeriod as SpecialHourPeriod, context$1_State as State, type context$1_StreetAddress as StreetAddress, type context$1_StudioAssigned as StudioAssigned, type context$1_StudioUnassigned as StudioUnassigned, type context$1_SupportedLanguage as SupportedLanguage, type TableCombination$1 as TableCombination, type context$1_TableCombinationContainsLessThan2TablesViolation as TableCombinationContainsLessThan2TablesViolation, type context$1_TableCombinationIdsDuplicationViolation as TableCombinationIdsDuplicationViolation, type context$1_TableCombinationIdsDuplicationViolationViolation as TableCombinationIdsDuplicationViolationViolation, type context$1_TableCombinationMinMaxSeatsViolation as TableCombinationMinMaxSeatsViolation, type context$1_TableCombinationNotExistViolation as TableCombinationNotExistViolation, type context$1_TableCombinationTableIdsCombinationDuplicationViolation as TableCombinationTableIdsCombinationDuplicationViolation, type context$1_TableCombinationTableIdsDuplicationViolation as TableCombinationTableIdsDuplicationViolation, type context$1_TableCombinationTableIdsDuplicationViolationViolation as TableCombinationTableIdsDuplicationViolationViolation, type context$1_TableDefinition as TableDefinition, type context$1_TableDefinitionIdsDuplicationViolation as TableDefinitionIdsDuplicationViolation, type context$1_TableDefinitionIncorrectBoundariesViolation as TableDefinitionIncorrectBoundariesViolation, type context$1_TableDefinitionNamesDuplicationViolation as TableDefinitionNamesDuplicationViolation, type context$1_TableDefinitionNotExistViolation as TableDefinitionNotExistViolation, type context$1_TableManagement as TableManagement, type context$1_TablesDeleted as TablesDeleted, type context$1_TermsAndConditions as TermsAndConditions, type context$1_TermsAndConditionsValueOneOf as TermsAndConditionsValueOneOf, type context$1_TimePeriod as TimePeriod, type context$1_TransferredFromAnotherAccountReason as TransferredFromAnotherAccountReason, type context$1_TransferredToAnotherAccountReason as TransferredToAnotherAccountReason, type context$1_Translation as Translation, type context$1_TurnoverRule as TurnoverRule, type context$1_TurnoverRulesIncorrectBoundariesViolation as TurnoverRulesIncorrectBoundariesViolation, type context$1_TurnoverRulesIntersectViolation as TurnoverRulesIntersectViolation, type context$1_TurnoverTimeRule as TurnoverTimeRule, type context$1_TurnoverTimeRulesIncorrectBoundariesViolation as TurnoverTimeRulesIncorrectBoundariesViolation, type context$1_TurnoverTimeRulesIntersectViolation as TurnoverTimeRulesIntersectViolation, Type$1 as Type, type context$1_URI as URI, type context$1_UnAssingedToFloatingReason as UnAssingedToFloatingReason, context$1_Unit as Unit, type context$1_UpdateExtendedFieldsOptions as UpdateExtendedFieldsOptions, type context$1_UpdateExtendedFieldsRequest as UpdateExtendedFieldsRequest, type context$1_UpdateExtendedFieldsResponse as UpdateExtendedFieldsResponse, type context$1_UpdateExtendedFieldsResponseNonNullableFields as UpdateExtendedFieldsResponseNonNullableFields, type context$1_UpdateReservationLocation as UpdateReservationLocation, type context$1_UpdateReservationLocationRequest as UpdateReservationLocationRequest, type context$1_UpdateReservationLocationResponse as UpdateReservationLocationResponse, type context$1_UpdateReservationLocationResponseNonNullableFields as UpdateReservationLocationResponseNonNullableFields, type context$1_V4SiteCreated as V4SiteCreated, context$1_Value as Value, type context$1_Violation as Violation, context$1_WebhookIdentityType as WebhookIdentityType, type context$1__publicOnReservationLocationCreatedType as _publicOnReservationLocationCreatedType, type context$1__publicOnReservationLocationUpdatedType as _publicOnReservationLocationUpdatedType, context$1_getReservationLocation as getReservationLocation, context$1_listReservationLocations as listReservationLocations, context$1_onReservationLocationCreated as onReservationLocationCreated, context$1_onReservationLocationUpdated as onReservationLocationUpdated, onReservationLocationCreated$1 as publicOnReservationLocationCreated, onReservationLocationUpdated$1 as publicOnReservationLocationUpdated, context$1_queryReservationLocations as queryReservationLocations, context$1_updateExtendedFields as updateExtendedFields, context$1_updateReservationLocation as updateReservationLocation };
5148
5158
  }
5149
5159
 
5150
5160
  interface TimeSlot {
@@ -2911,6 +2911,8 @@ interface ReservationLocationViolation extends ReservationLocationViolationViola
2911
2911
  myReservationsFieldsDuplicationViolation?: MyReservationsFieldsDuplicationViolation;
2912
2912
  /** Business schedule special hour period end date is before or equal to start date violation. */
2913
2913
  businessScheduleSpecialHourPeriodEndBeforeStartViolation?: BusinessScheduleSpecialHourPeriodEndBeforeStartViolation;
2914
+ /** Business schedule time period close day and time before open day and time violation. */
2915
+ businessScheduleTimePeriodCloseBeforeOpenViolation?: BusinessScheduleTimePeriodCloseBeforeOpenViolation;
2914
2916
  /** Type of the violation. */
2915
2917
  type?: Type$1;
2916
2918
  }
@@ -2964,6 +2966,8 @@ interface ReservationLocationViolationViolationOneOf {
2964
2966
  myReservationsFieldsDuplicationViolation?: MyReservationsFieldsDuplicationViolation;
2965
2967
  /** Business schedule special hour period end date is before or equal to start date violation. */
2966
2968
  businessScheduleSpecialHourPeriodEndBeforeStartViolation?: BusinessScheduleSpecialHourPeriodEndBeforeStartViolation;
2969
+ /** Business schedule time period close day and time before open day and time violation. */
2970
+ businessScheduleTimePeriodCloseBeforeOpenViolation?: BusinessScheduleTimePeriodCloseBeforeOpenViolation;
2967
2971
  }
2968
2972
  interface DuplicatedName {
2969
2973
  /** Duplicated field name. */
@@ -3041,7 +3045,8 @@ declare enum Type$1 {
3041
3045
  DEFAULT_TURNOVER_TIME_ABSENT = "DEFAULT_TURNOVER_TIME_ABSENT",
3042
3046
  NOT_ALL_RESERVATION_FIELDS = "NOT_ALL_RESERVATION_FIELDS",
3043
3047
  TABLE_DEFINITION_INCORRECT_BOUNDARIES = "TABLE_DEFINITION_INCORRECT_BOUNDARIES",
3044
- BUSINESS_SCHEDULE_SPECIAL_HOUR_PERIOD_END_BEFORE_START = "BUSINESS_SCHEDULE_SPECIAL_HOUR_PERIOD_END_BEFORE_START"
3048
+ BUSINESS_SCHEDULE_SPECIAL_HOUR_PERIOD_END_BEFORE_START = "BUSINESS_SCHEDULE_SPECIAL_HOUR_PERIOD_END_BEFORE_START",
3049
+ BUSINESS_SCHEDULE_TIME_PERIOD_CLOSE_BEFORE_OPEN = "BUSINESS_SCHEDULE_TIME_PERIOD_CLOSE_BEFORE_OPEN"
3045
3050
  }
3046
3051
  interface NotAllReservationFieldsViolation {
3047
3052
  /** Field types that are absent. */
@@ -3141,6 +3146,10 @@ interface BusinessScheduleSpecialHourPeriodEndBeforeStartViolation {
3141
3146
  /** Positions of invalid special hour periods in array. */
3142
3147
  indexes?: number[];
3143
3148
  }
3149
+ interface BusinessScheduleTimePeriodCloseBeforeOpenViolation {
3150
+ /** Positions of invalid time periods in array. */
3151
+ indexes?: number[];
3152
+ }
3144
3153
  interface UpdateExtendedFieldsRequest {
3145
3154
  /** ID of the entity to update. */
3146
3155
  _id: string;
@@ -4914,6 +4923,7 @@ type index_d$1_BooleanFeature = BooleanFeature;
4914
4923
  type index_d$1_BusinessSchedule = BusinessSchedule;
4915
4924
  type index_d$1_BusinessScheduleSpecialHourPeriodEndBeforeStartViolation = BusinessScheduleSpecialHourPeriodEndBeforeStartViolation;
4916
4925
  type index_d$1_BusinessScheduleSpecialHourPeriodInvalidViolation = BusinessScheduleSpecialHourPeriodInvalidViolation;
4926
+ type index_d$1_BusinessScheduleTimePeriodCloseBeforeOpenViolation = BusinessScheduleTimePeriodCloseBeforeOpenViolation;
4917
4927
  type index_d$1_BusinessScheduleTimePeriodInvalidViolation = BusinessScheduleTimePeriodInvalidViolation;
4918
4928
  type index_d$1_CancelRequestedReason = CancelRequestedReason;
4919
4929
  type index_d$1_Categories = Categories;
@@ -5144,7 +5154,7 @@ declare const index_d$1_queryReservationLocations: typeof queryReservationLocati
5144
5154
  declare const index_d$1_updateExtendedFields: typeof updateExtendedFields;
5145
5155
  declare const index_d$1_updateReservationLocation: typeof updateReservationLocation;
5146
5156
  declare namespace index_d$1 {
5147
- export { type index_d$1_ActionEvent as ActionEvent, type index_d$1_Address as Address, type index_d$1_AddressHint as AddressHint, type index_d$1_AddressLocation as AddressLocation, type index_d$1_App as App, type index_d$1_Approval as Approval, index_d$1_ApprovalMode as ApprovalMode, type index_d$1_ApprovalOptionsOneOf as ApprovalOptionsOneOf, type index_d$1_Asset as Asset, type index_d$1_AssignedFromFloatingReason as AssignedFromFloatingReason, type index_d$1_BaseEventMetadata as BaseEventMetadata, type index_d$1_BooleanFeature as BooleanFeature, type index_d$1_BusinessSchedule as BusinessSchedule, type index_d$1_BusinessScheduleSpecialHourPeriodEndBeforeStartViolation as BusinessScheduleSpecialHourPeriodEndBeforeStartViolation, type index_d$1_BusinessScheduleSpecialHourPeriodInvalidViolation as BusinessScheduleSpecialHourPeriodInvalidViolation, type index_d$1_BusinessScheduleTimePeriodInvalidViolation as BusinessScheduleTimePeriodInvalidViolation, type index_d$1_CancelRequestedReason as CancelRequestedReason, type index_d$1_Categories as Categories, type index_d$1_ChangeContext as ChangeContext, type index_d$1_ChangeContextPayloadOneOf as ChangeContextPayloadOneOf, type index_d$1_CheckReservationLocationsCreatedRequest as CheckReservationLocationsCreatedRequest, type index_d$1_CheckReservationLocationsCreatedResponse as CheckReservationLocationsCreatedResponse, type index_d$1_CommonBusinessSchedule as CommonBusinessSchedule, index_d$1_CommonDayOfWeek as CommonDayOfWeek, type index_d$1_CommonSpecialHourPeriod as CommonSpecialHourPeriod, type index_d$1_CommonTimePeriod as CommonTimePeriod, type index_d$1_Configuration as Configuration, type index_d$1_ConsentPolicy as ConsentPolicy, type index_d$1_ContractSwitchedReason as ContractSwitchedReason, type index_d$1_CursorPaging as CursorPaging, type index_d$1_CursorPagingMetadata as CursorPagingMetadata, type index_d$1_Cursors as Cursors, type index_d$1_CustomFieldDefinition as CustomFieldDefinition, type index_d$1_CustomFieldIdsDuplicationViolation as CustomFieldIdsDuplicationViolation, type index_d$1_CustomFieldNamesDuplicationViolation as CustomFieldNamesDuplicationViolation, index_d$1_DayOfWeek as DayOfWeek, type index_d$1_DeleteContext as DeleteContext, type index_d$1_DeleteOrphanReservationLocationRequest as DeleteOrphanReservationLocationRequest, type index_d$1_DeleteOrphanReservationLocationResponse as DeleteOrphanReservationLocationResponse, index_d$1_DeleteStatus as DeleteStatus, type index_d$1_DomainEvent as DomainEvent, type index_d$1_DomainEventBodyOneOf as DomainEventBodyOneOf, type index_d$1_DuplicatedId as DuplicatedId, type index_d$1_DuplicatedName as DuplicatedName, type index_d$1_EmailMarketingCheckbox as EmailMarketingCheckbox, type index_d$1_Empty as Empty, type index_d$1_EntityCreatedEvent as EntityCreatedEvent, type index_d$1_EntityDeletedEvent as EntityDeletedEvent, type index_d$1_EntityUpdatedEvent as EntityUpdatedEvent, type index_d$1_EventMetadata as EventMetadata, type index_d$1_ExtendedFields as ExtendedFields, type index_d$1_Feature as Feature, type index_d$1_FeatureCancelled as FeatureCancelled, type index_d$1_FeatureCancelledReasonOneOf as FeatureCancelledReasonOneOf, type index_d$1_FeatureContext as FeatureContext, type index_d$1_FeatureDisabled as FeatureDisabled, type index_d$1_FeatureDisabledReasonOneOf as FeatureDisabledReasonOneOf, type index_d$1_FeatureEnabled as FeatureEnabled, type index_d$1_FeatureEnabledReasonOneOf as FeatureEnabledReasonOneOf, type index_d$1_FeatureEvent as FeatureEvent, type index_d$1_FeatureEventEventOneOf as FeatureEventEventOneOf, index_d$1_FeaturePeriod as FeaturePeriod, type index_d$1_FeatureQuantityInfoOneOf as FeatureQuantityInfoOneOf, type index_d$1_FeatureUpdated as FeatureUpdated, type index_d$1_FeatureUpdatedPreviousQuantityInfoOneOf as FeatureUpdatedPreviousQuantityInfoOneOf, type index_d$1_FeatureUpdatedReasonOneOf as FeatureUpdatedReasonOneOf, index_d$1_FieldType as FieldType, type index_d$1_File as File, type index_d$1_GeoCoordinates as GeoCoordinates, type index_d$1_GetReservationLocationOptions as GetReservationLocationOptions, type index_d$1_GetReservationLocationRequest as GetReservationLocationRequest, type index_d$1_GetReservationLocationResponse as GetReservationLocationResponse, type index_d$1_GetReservationLocationResponseNonNullableFields as GetReservationLocationResponseNonNullableFields, type index_d$1_IdentificationData as IdentificationData, type index_d$1_IdentificationDataIdOneOf as IdentificationDataIdOneOf, type index_d$1_InvalidateCache as InvalidateCache, type index_d$1_InvalidateCacheGetByOneOf as InvalidateCacheGetByOneOf, type index_d$1_ListReservationLocationsOptions as ListReservationLocationsOptions, type index_d$1_ListReservationLocationsRequest as ListReservationLocationsRequest, type index_d$1_ListReservationLocationsResponse as ListReservationLocationsResponse, type index_d$1_ListReservationLocationsResponseNonNullableFields as ListReservationLocationsResponseNonNullableFields, type index_d$1_Locale as Locale, type index_d$1_Location as Location, type index_d$1_LocationAddress as LocationAddress, type index_d$1_ManualApproval as ManualApproval, type index_d$1_ManualApprovalValueOneOf as ManualApprovalValueOneOf, type index_d$1_ManualFeatureCreationReason as ManualFeatureCreationReason, type index_d$1_ManualForLargePartiesOptions as ManualForLargePartiesOptions, type index_d$1_MessageEnvelope as MessageEnvelope, type index_d$1_MetaSiteSpecialEvent as MetaSiteSpecialEvent, type index_d$1_MetaSiteSpecialEventPayloadOneOf as MetaSiteSpecialEventPayloadOneOf, type index_d$1_MigrateOldRestaurantSettingsRequest as MigrateOldRestaurantSettingsRequest, type index_d$1_MigrateOldRestaurantSettingsResponse as MigrateOldRestaurantSettingsResponse, type index_d$1_MigratedFromLegacyReason as MigratedFromLegacyReason, type index_d$1_MigrationParsingError as MigrationParsingError, type index_d$1_MigrationResult as MigrationResult, index_d$1_Mode as Mode, type index_d$1_Multilingual as Multilingual, type index_d$1_MyReservationsField as MyReservationsField, type index_d$1_MyReservationsFieldsDuplicationViolation as MyReservationsFieldsDuplicationViolation, index_d$1_Namespace as Namespace, type index_d$1_NamespaceChanged as NamespaceChanged, type index_d$1_NewFeatureReason as NewFeatureReason, type index_d$1_NonExistentTablesInTableCombinationViolation as NonExistentTablesInTableCombinationViolation, type index_d$1_NonExistentTablesInTableCombinationViolationViolation as NonExistentTablesInTableCombinationViolationViolation, type index_d$1_NotAllReservationFieldsViolation as NotAllReservationFieldsViolation, type index_d$1_NoticePeriod as NoticePeriod, type index_d$1_OldCustomField as OldCustomField, type index_d$1_OldInstant as OldInstant, type index_d$1_OldPolicy as OldPolicy, type index_d$1_OldScheduleException as OldScheduleException, type index_d$1_OldScheduleInterval as OldScheduleInterval, type index_d$1_OldTerms as OldTerms, type index_d$1_OnlineReservations as OnlineReservations, type index_d$1_Page as Page, type index_d$1_Paging as Paging, type index_d$1_PagingMetadataV2 as PagingMetadataV2, type index_d$1_ParsedSettings as ParsedSettings, type index_d$1_PartiesSize as PartiesSize, type index_d$1_PartyPacing as PartyPacing, type index_d$1_PartySize as PartySize, index_d$1_PlacementType as PlacementType, type index_d$1_PrivacyPolicy as PrivacyPolicy, type index_d$1_PrivacyPolicyValueOneOf as PrivacyPolicyValueOneOf, type index_d$1_Properties as Properties, type index_d$1_PropertiesChange as PropertiesChange, type index_d$1_QueryReservationLocationsOptions as QueryReservationLocationsOptions, type index_d$1_QueryReservationLocationsRequest as QueryReservationLocationsRequest, type index_d$1_QueryReservationLocationsResponse as QueryReservationLocationsResponse, type index_d$1_QueryReservationLocationsResponseNonNullableFields as QueryReservationLocationsResponseNonNullableFields, type index_d$1_QueryV2 as QueryV2, type index_d$1_QueryV2PagingMethodOneOf as QueryV2PagingMethodOneOf, type index_d$1_QuotaFeature as QuotaFeature, type index_d$1_QuotaInfo as QuotaInfo, type index_d$1_ReassignedFromSiteReason as ReassignedFromSiteReason, type index_d$1_ReassignedToAnotherSiteReason as ReassignedToAnotherSiteReason, type index_d$1_ReplacedByAnotherSubscriptionReason as ReplacedByAnotherSubscriptionReason, type index_d$1_ReservationFieldMustHaveTypeViolation as ReservationFieldMustHaveTypeViolation, type index_d$1_ReservationFieldNotExistViolation as ReservationFieldNotExistViolation, type index_d$1_ReservationForm as ReservationForm, type index_d$1_ReservationLocation as ReservationLocation, type index_d$1_ReservationLocationCreatedEnvelope as ReservationLocationCreatedEnvelope, type index_d$1_ReservationLocationNonNullableFields as ReservationLocationNonNullableFields, type index_d$1_ReservationLocationUpdatedEnvelope as ReservationLocationUpdatedEnvelope, type index_d$1_ReservationLocationViolation as ReservationLocationViolation, type index_d$1_ReservationLocationViolationViolationOneOf as ReservationLocationViolationViolationOneOf, type index_d$1_ReservationLocationsQueryBuilder as ReservationLocationsQueryBuilder, type index_d$1_ReservationLocationsQueryResult as ReservationLocationsQueryResult, type index_d$1_ReservationPayment as ReservationPayment, index_d$1_ResolutionMethod as ResolutionMethod, type index_d$1_RestoreInfo as RestoreInfo, type index_d$1_SeatPacing as SeatPacing, type index_d$1_ServiceProvisioned as ServiceProvisioned, type index_d$1_ServiceRemoved as ServiceRemoved, index_d$1_Set as Set, type index_d$1_SiteCloned as SiteCloned, type index_d$1_SiteCreated as SiteCreated, index_d$1_SiteCreatedContext as SiteCreatedContext, type index_d$1_SiteDeleted as SiteDeleted, type index_d$1_SiteHardDeleted as SiteHardDeleted, type index_d$1_SiteMarkedAsTemplate as SiteMarkedAsTemplate, type index_d$1_SiteMarkedAsWixSite as SiteMarkedAsWixSite, type index_d$1_SitePropertiesEvent as SitePropertiesEvent, type index_d$1_SitePropertiesNotification as SitePropertiesNotification, type index_d$1_SitePublished as SitePublished, type index_d$1_SiteRenamed as SiteRenamed, type index_d$1_SiteTransferred as SiteTransferred, type index_d$1_SiteUndeleted as SiteUndeleted, type index_d$1_SiteUnpublished as SiteUnpublished, index_d$1_SortOrder as SortOrder, type index_d$1_Sorting as Sorting, type index_d$1_SpecialHourPeriod as SpecialHourPeriod, index_d$1_State as State, type index_d$1_StreetAddress as StreetAddress, type index_d$1_StudioAssigned as StudioAssigned, type index_d$1_StudioUnassigned as StudioUnassigned, type index_d$1_SupportedLanguage as SupportedLanguage, type TableCombination$1 as TableCombination, type index_d$1_TableCombinationContainsLessThan2TablesViolation as TableCombinationContainsLessThan2TablesViolation, type index_d$1_TableCombinationIdsDuplicationViolation as TableCombinationIdsDuplicationViolation, type index_d$1_TableCombinationIdsDuplicationViolationViolation as TableCombinationIdsDuplicationViolationViolation, type index_d$1_TableCombinationMinMaxSeatsViolation as TableCombinationMinMaxSeatsViolation, type index_d$1_TableCombinationNotExistViolation as TableCombinationNotExistViolation, type index_d$1_TableCombinationTableIdsCombinationDuplicationViolation as TableCombinationTableIdsCombinationDuplicationViolation, type index_d$1_TableCombinationTableIdsDuplicationViolation as TableCombinationTableIdsDuplicationViolation, type index_d$1_TableCombinationTableIdsDuplicationViolationViolation as TableCombinationTableIdsDuplicationViolationViolation, type index_d$1_TableDefinition as TableDefinition, type index_d$1_TableDefinitionIdsDuplicationViolation as TableDefinitionIdsDuplicationViolation, type index_d$1_TableDefinitionIncorrectBoundariesViolation as TableDefinitionIncorrectBoundariesViolation, type index_d$1_TableDefinitionNamesDuplicationViolation as TableDefinitionNamesDuplicationViolation, type index_d$1_TableDefinitionNotExistViolation as TableDefinitionNotExistViolation, type index_d$1_TableManagement as TableManagement, type index_d$1_TablesDeleted as TablesDeleted, type index_d$1_TermsAndConditions as TermsAndConditions, type index_d$1_TermsAndConditionsValueOneOf as TermsAndConditionsValueOneOf, type index_d$1_TimePeriod as TimePeriod, type index_d$1_TransferredFromAnotherAccountReason as TransferredFromAnotherAccountReason, type index_d$1_TransferredToAnotherAccountReason as TransferredToAnotherAccountReason, type index_d$1_Translation as Translation, type index_d$1_TurnoverRule as TurnoverRule, type index_d$1_TurnoverRulesIncorrectBoundariesViolation as TurnoverRulesIncorrectBoundariesViolation, type index_d$1_TurnoverRulesIntersectViolation as TurnoverRulesIntersectViolation, type index_d$1_TurnoverTimeRule as TurnoverTimeRule, type index_d$1_TurnoverTimeRulesIncorrectBoundariesViolation as TurnoverTimeRulesIncorrectBoundariesViolation, type index_d$1_TurnoverTimeRulesIntersectViolation as TurnoverTimeRulesIntersectViolation, Type$1 as Type, type index_d$1_URI as URI, type index_d$1_UnAssingedToFloatingReason as UnAssingedToFloatingReason, index_d$1_Unit as Unit, type index_d$1_UpdateExtendedFieldsOptions as UpdateExtendedFieldsOptions, type index_d$1_UpdateExtendedFieldsRequest as UpdateExtendedFieldsRequest, type index_d$1_UpdateExtendedFieldsResponse as UpdateExtendedFieldsResponse, type index_d$1_UpdateExtendedFieldsResponseNonNullableFields as UpdateExtendedFieldsResponseNonNullableFields, type index_d$1_UpdateReservationLocation as UpdateReservationLocation, type index_d$1_UpdateReservationLocationRequest as UpdateReservationLocationRequest, type index_d$1_UpdateReservationLocationResponse as UpdateReservationLocationResponse, type index_d$1_UpdateReservationLocationResponseNonNullableFields as UpdateReservationLocationResponseNonNullableFields, type index_d$1_V4SiteCreated as V4SiteCreated, index_d$1_Value as Value, type index_d$1_Violation as Violation, index_d$1_WebhookIdentityType as WebhookIdentityType, type index_d$1__publicOnReservationLocationCreatedType as _publicOnReservationLocationCreatedType, type index_d$1__publicOnReservationLocationUpdatedType as _publicOnReservationLocationUpdatedType, index_d$1_getReservationLocation as getReservationLocation, index_d$1_listReservationLocations as listReservationLocations, index_d$1_onReservationLocationCreated as onReservationLocationCreated, index_d$1_onReservationLocationUpdated as onReservationLocationUpdated, onReservationLocationCreated$1 as publicOnReservationLocationCreated, onReservationLocationUpdated$1 as publicOnReservationLocationUpdated, index_d$1_queryReservationLocations as queryReservationLocations, index_d$1_updateExtendedFields as updateExtendedFields, index_d$1_updateReservationLocation as updateReservationLocation };
5157
+ export { type index_d$1_ActionEvent as ActionEvent, type index_d$1_Address as Address, type index_d$1_AddressHint as AddressHint, type index_d$1_AddressLocation as AddressLocation, type index_d$1_App as App, type index_d$1_Approval as Approval, index_d$1_ApprovalMode as ApprovalMode, type index_d$1_ApprovalOptionsOneOf as ApprovalOptionsOneOf, type index_d$1_Asset as Asset, type index_d$1_AssignedFromFloatingReason as AssignedFromFloatingReason, type index_d$1_BaseEventMetadata as BaseEventMetadata, type index_d$1_BooleanFeature as BooleanFeature, type index_d$1_BusinessSchedule as BusinessSchedule, type index_d$1_BusinessScheduleSpecialHourPeriodEndBeforeStartViolation as BusinessScheduleSpecialHourPeriodEndBeforeStartViolation, type index_d$1_BusinessScheduleSpecialHourPeriodInvalidViolation as BusinessScheduleSpecialHourPeriodInvalidViolation, type index_d$1_BusinessScheduleTimePeriodCloseBeforeOpenViolation as BusinessScheduleTimePeriodCloseBeforeOpenViolation, type index_d$1_BusinessScheduleTimePeriodInvalidViolation as BusinessScheduleTimePeriodInvalidViolation, type index_d$1_CancelRequestedReason as CancelRequestedReason, type index_d$1_Categories as Categories, type index_d$1_ChangeContext as ChangeContext, type index_d$1_ChangeContextPayloadOneOf as ChangeContextPayloadOneOf, type index_d$1_CheckReservationLocationsCreatedRequest as CheckReservationLocationsCreatedRequest, type index_d$1_CheckReservationLocationsCreatedResponse as CheckReservationLocationsCreatedResponse, type index_d$1_CommonBusinessSchedule as CommonBusinessSchedule, index_d$1_CommonDayOfWeek as CommonDayOfWeek, type index_d$1_CommonSpecialHourPeriod as CommonSpecialHourPeriod, type index_d$1_CommonTimePeriod as CommonTimePeriod, type index_d$1_Configuration as Configuration, type index_d$1_ConsentPolicy as ConsentPolicy, type index_d$1_ContractSwitchedReason as ContractSwitchedReason, type index_d$1_CursorPaging as CursorPaging, type index_d$1_CursorPagingMetadata as CursorPagingMetadata, type index_d$1_Cursors as Cursors, type index_d$1_CustomFieldDefinition as CustomFieldDefinition, type index_d$1_CustomFieldIdsDuplicationViolation as CustomFieldIdsDuplicationViolation, type index_d$1_CustomFieldNamesDuplicationViolation as CustomFieldNamesDuplicationViolation, index_d$1_DayOfWeek as DayOfWeek, type index_d$1_DeleteContext as DeleteContext, type index_d$1_DeleteOrphanReservationLocationRequest as DeleteOrphanReservationLocationRequest, type index_d$1_DeleteOrphanReservationLocationResponse as DeleteOrphanReservationLocationResponse, index_d$1_DeleteStatus as DeleteStatus, type index_d$1_DomainEvent as DomainEvent, type index_d$1_DomainEventBodyOneOf as DomainEventBodyOneOf, type index_d$1_DuplicatedId as DuplicatedId, type index_d$1_DuplicatedName as DuplicatedName, type index_d$1_EmailMarketingCheckbox as EmailMarketingCheckbox, type index_d$1_Empty as Empty, type index_d$1_EntityCreatedEvent as EntityCreatedEvent, type index_d$1_EntityDeletedEvent as EntityDeletedEvent, type index_d$1_EntityUpdatedEvent as EntityUpdatedEvent, type index_d$1_EventMetadata as EventMetadata, type index_d$1_ExtendedFields as ExtendedFields, type index_d$1_Feature as Feature, type index_d$1_FeatureCancelled as FeatureCancelled, type index_d$1_FeatureCancelledReasonOneOf as FeatureCancelledReasonOneOf, type index_d$1_FeatureContext as FeatureContext, type index_d$1_FeatureDisabled as FeatureDisabled, type index_d$1_FeatureDisabledReasonOneOf as FeatureDisabledReasonOneOf, type index_d$1_FeatureEnabled as FeatureEnabled, type index_d$1_FeatureEnabledReasonOneOf as FeatureEnabledReasonOneOf, type index_d$1_FeatureEvent as FeatureEvent, type index_d$1_FeatureEventEventOneOf as FeatureEventEventOneOf, index_d$1_FeaturePeriod as FeaturePeriod, type index_d$1_FeatureQuantityInfoOneOf as FeatureQuantityInfoOneOf, type index_d$1_FeatureUpdated as FeatureUpdated, type index_d$1_FeatureUpdatedPreviousQuantityInfoOneOf as FeatureUpdatedPreviousQuantityInfoOneOf, type index_d$1_FeatureUpdatedReasonOneOf as FeatureUpdatedReasonOneOf, index_d$1_FieldType as FieldType, type index_d$1_File as File, type index_d$1_GeoCoordinates as GeoCoordinates, type index_d$1_GetReservationLocationOptions as GetReservationLocationOptions, type index_d$1_GetReservationLocationRequest as GetReservationLocationRequest, type index_d$1_GetReservationLocationResponse as GetReservationLocationResponse, type index_d$1_GetReservationLocationResponseNonNullableFields as GetReservationLocationResponseNonNullableFields, type index_d$1_IdentificationData as IdentificationData, type index_d$1_IdentificationDataIdOneOf as IdentificationDataIdOneOf, type index_d$1_InvalidateCache as InvalidateCache, type index_d$1_InvalidateCacheGetByOneOf as InvalidateCacheGetByOneOf, type index_d$1_ListReservationLocationsOptions as ListReservationLocationsOptions, type index_d$1_ListReservationLocationsRequest as ListReservationLocationsRequest, type index_d$1_ListReservationLocationsResponse as ListReservationLocationsResponse, type index_d$1_ListReservationLocationsResponseNonNullableFields as ListReservationLocationsResponseNonNullableFields, type index_d$1_Locale as Locale, type index_d$1_Location as Location, type index_d$1_LocationAddress as LocationAddress, type index_d$1_ManualApproval as ManualApproval, type index_d$1_ManualApprovalValueOneOf as ManualApprovalValueOneOf, type index_d$1_ManualFeatureCreationReason as ManualFeatureCreationReason, type index_d$1_ManualForLargePartiesOptions as ManualForLargePartiesOptions, type index_d$1_MessageEnvelope as MessageEnvelope, type index_d$1_MetaSiteSpecialEvent as MetaSiteSpecialEvent, type index_d$1_MetaSiteSpecialEventPayloadOneOf as MetaSiteSpecialEventPayloadOneOf, type index_d$1_MigrateOldRestaurantSettingsRequest as MigrateOldRestaurantSettingsRequest, type index_d$1_MigrateOldRestaurantSettingsResponse as MigrateOldRestaurantSettingsResponse, type index_d$1_MigratedFromLegacyReason as MigratedFromLegacyReason, type index_d$1_MigrationParsingError as MigrationParsingError, type index_d$1_MigrationResult as MigrationResult, index_d$1_Mode as Mode, type index_d$1_Multilingual as Multilingual, type index_d$1_MyReservationsField as MyReservationsField, type index_d$1_MyReservationsFieldsDuplicationViolation as MyReservationsFieldsDuplicationViolation, index_d$1_Namespace as Namespace, type index_d$1_NamespaceChanged as NamespaceChanged, type index_d$1_NewFeatureReason as NewFeatureReason, type index_d$1_NonExistentTablesInTableCombinationViolation as NonExistentTablesInTableCombinationViolation, type index_d$1_NonExistentTablesInTableCombinationViolationViolation as NonExistentTablesInTableCombinationViolationViolation, type index_d$1_NotAllReservationFieldsViolation as NotAllReservationFieldsViolation, type index_d$1_NoticePeriod as NoticePeriod, type index_d$1_OldCustomField as OldCustomField, type index_d$1_OldInstant as OldInstant, type index_d$1_OldPolicy as OldPolicy, type index_d$1_OldScheduleException as OldScheduleException, type index_d$1_OldScheduleInterval as OldScheduleInterval, type index_d$1_OldTerms as OldTerms, type index_d$1_OnlineReservations as OnlineReservations, type index_d$1_Page as Page, type index_d$1_Paging as Paging, type index_d$1_PagingMetadataV2 as PagingMetadataV2, type index_d$1_ParsedSettings as ParsedSettings, type index_d$1_PartiesSize as PartiesSize, type index_d$1_PartyPacing as PartyPacing, type index_d$1_PartySize as PartySize, index_d$1_PlacementType as PlacementType, type index_d$1_PrivacyPolicy as PrivacyPolicy, type index_d$1_PrivacyPolicyValueOneOf as PrivacyPolicyValueOneOf, type index_d$1_Properties as Properties, type index_d$1_PropertiesChange as PropertiesChange, type index_d$1_QueryReservationLocationsOptions as QueryReservationLocationsOptions, type index_d$1_QueryReservationLocationsRequest as QueryReservationLocationsRequest, type index_d$1_QueryReservationLocationsResponse as QueryReservationLocationsResponse, type index_d$1_QueryReservationLocationsResponseNonNullableFields as QueryReservationLocationsResponseNonNullableFields, type index_d$1_QueryV2 as QueryV2, type index_d$1_QueryV2PagingMethodOneOf as QueryV2PagingMethodOneOf, type index_d$1_QuotaFeature as QuotaFeature, type index_d$1_QuotaInfo as QuotaInfo, type index_d$1_ReassignedFromSiteReason as ReassignedFromSiteReason, type index_d$1_ReassignedToAnotherSiteReason as ReassignedToAnotherSiteReason, type index_d$1_ReplacedByAnotherSubscriptionReason as ReplacedByAnotherSubscriptionReason, type index_d$1_ReservationFieldMustHaveTypeViolation as ReservationFieldMustHaveTypeViolation, type index_d$1_ReservationFieldNotExistViolation as ReservationFieldNotExistViolation, type index_d$1_ReservationForm as ReservationForm, type index_d$1_ReservationLocation as ReservationLocation, type index_d$1_ReservationLocationCreatedEnvelope as ReservationLocationCreatedEnvelope, type index_d$1_ReservationLocationNonNullableFields as ReservationLocationNonNullableFields, type index_d$1_ReservationLocationUpdatedEnvelope as ReservationLocationUpdatedEnvelope, type index_d$1_ReservationLocationViolation as ReservationLocationViolation, type index_d$1_ReservationLocationViolationViolationOneOf as ReservationLocationViolationViolationOneOf, type index_d$1_ReservationLocationsQueryBuilder as ReservationLocationsQueryBuilder, type index_d$1_ReservationLocationsQueryResult as ReservationLocationsQueryResult, type index_d$1_ReservationPayment as ReservationPayment, index_d$1_ResolutionMethod as ResolutionMethod, type index_d$1_RestoreInfo as RestoreInfo, type index_d$1_SeatPacing as SeatPacing, type index_d$1_ServiceProvisioned as ServiceProvisioned, type index_d$1_ServiceRemoved as ServiceRemoved, index_d$1_Set as Set, type index_d$1_SiteCloned as SiteCloned, type index_d$1_SiteCreated as SiteCreated, index_d$1_SiteCreatedContext as SiteCreatedContext, type index_d$1_SiteDeleted as SiteDeleted, type index_d$1_SiteHardDeleted as SiteHardDeleted, type index_d$1_SiteMarkedAsTemplate as SiteMarkedAsTemplate, type index_d$1_SiteMarkedAsWixSite as SiteMarkedAsWixSite, type index_d$1_SitePropertiesEvent as SitePropertiesEvent, type index_d$1_SitePropertiesNotification as SitePropertiesNotification, type index_d$1_SitePublished as SitePublished, type index_d$1_SiteRenamed as SiteRenamed, type index_d$1_SiteTransferred as SiteTransferred, type index_d$1_SiteUndeleted as SiteUndeleted, type index_d$1_SiteUnpublished as SiteUnpublished, index_d$1_SortOrder as SortOrder, type index_d$1_Sorting as Sorting, type index_d$1_SpecialHourPeriod as SpecialHourPeriod, index_d$1_State as State, type index_d$1_StreetAddress as StreetAddress, type index_d$1_StudioAssigned as StudioAssigned, type index_d$1_StudioUnassigned as StudioUnassigned, type index_d$1_SupportedLanguage as SupportedLanguage, type TableCombination$1 as TableCombination, type index_d$1_TableCombinationContainsLessThan2TablesViolation as TableCombinationContainsLessThan2TablesViolation, type index_d$1_TableCombinationIdsDuplicationViolation as TableCombinationIdsDuplicationViolation, type index_d$1_TableCombinationIdsDuplicationViolationViolation as TableCombinationIdsDuplicationViolationViolation, type index_d$1_TableCombinationMinMaxSeatsViolation as TableCombinationMinMaxSeatsViolation, type index_d$1_TableCombinationNotExistViolation as TableCombinationNotExistViolation, type index_d$1_TableCombinationTableIdsCombinationDuplicationViolation as TableCombinationTableIdsCombinationDuplicationViolation, type index_d$1_TableCombinationTableIdsDuplicationViolation as TableCombinationTableIdsDuplicationViolation, type index_d$1_TableCombinationTableIdsDuplicationViolationViolation as TableCombinationTableIdsDuplicationViolationViolation, type index_d$1_TableDefinition as TableDefinition, type index_d$1_TableDefinitionIdsDuplicationViolation as TableDefinitionIdsDuplicationViolation, type index_d$1_TableDefinitionIncorrectBoundariesViolation as TableDefinitionIncorrectBoundariesViolation, type index_d$1_TableDefinitionNamesDuplicationViolation as TableDefinitionNamesDuplicationViolation, type index_d$1_TableDefinitionNotExistViolation as TableDefinitionNotExistViolation, type index_d$1_TableManagement as TableManagement, type index_d$1_TablesDeleted as TablesDeleted, type index_d$1_TermsAndConditions as TermsAndConditions, type index_d$1_TermsAndConditionsValueOneOf as TermsAndConditionsValueOneOf, type index_d$1_TimePeriod as TimePeriod, type index_d$1_TransferredFromAnotherAccountReason as TransferredFromAnotherAccountReason, type index_d$1_TransferredToAnotherAccountReason as TransferredToAnotherAccountReason, type index_d$1_Translation as Translation, type index_d$1_TurnoverRule as TurnoverRule, type index_d$1_TurnoverRulesIncorrectBoundariesViolation as TurnoverRulesIncorrectBoundariesViolation, type index_d$1_TurnoverRulesIntersectViolation as TurnoverRulesIntersectViolation, type index_d$1_TurnoverTimeRule as TurnoverTimeRule, type index_d$1_TurnoverTimeRulesIncorrectBoundariesViolation as TurnoverTimeRulesIncorrectBoundariesViolation, type index_d$1_TurnoverTimeRulesIntersectViolation as TurnoverTimeRulesIntersectViolation, Type$1 as Type, type index_d$1_URI as URI, type index_d$1_UnAssingedToFloatingReason as UnAssingedToFloatingReason, index_d$1_Unit as Unit, type index_d$1_UpdateExtendedFieldsOptions as UpdateExtendedFieldsOptions, type index_d$1_UpdateExtendedFieldsRequest as UpdateExtendedFieldsRequest, type index_d$1_UpdateExtendedFieldsResponse as UpdateExtendedFieldsResponse, type index_d$1_UpdateExtendedFieldsResponseNonNullableFields as UpdateExtendedFieldsResponseNonNullableFields, type index_d$1_UpdateReservationLocation as UpdateReservationLocation, type index_d$1_UpdateReservationLocationRequest as UpdateReservationLocationRequest, type index_d$1_UpdateReservationLocationResponse as UpdateReservationLocationResponse, type index_d$1_UpdateReservationLocationResponseNonNullableFields as UpdateReservationLocationResponseNonNullableFields, type index_d$1_V4SiteCreated as V4SiteCreated, index_d$1_Value as Value, type index_d$1_Violation as Violation, index_d$1_WebhookIdentityType as WebhookIdentityType, type index_d$1__publicOnReservationLocationCreatedType as _publicOnReservationLocationCreatedType, type index_d$1__publicOnReservationLocationUpdatedType as _publicOnReservationLocationUpdatedType, index_d$1_getReservationLocation as getReservationLocation, index_d$1_listReservationLocations as listReservationLocations, index_d$1_onReservationLocationCreated as onReservationLocationCreated, index_d$1_onReservationLocationUpdated as onReservationLocationUpdated, onReservationLocationCreated$1 as publicOnReservationLocationCreated, onReservationLocationUpdated$1 as publicOnReservationLocationUpdated, index_d$1_queryReservationLocations as queryReservationLocations, index_d$1_updateExtendedFields as updateExtendedFields, index_d$1_updateReservationLocation as updateReservationLocation };
5148
5158
  }
5149
5159
 
5150
5160
  interface TimeSlot {