@wix/calendar 1.0.7 → 1.0.8

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/calendar",
3
- "version": "1.0.7",
3
+ "version": "1.0.8",
4
4
  "publishConfig": {
5
5
  "registry": "https://registry.npmjs.org/",
6
6
  "access": "public"
@@ -19,7 +19,7 @@
19
19
  ],
20
20
  "dependencies": {
21
21
  "@wix/calendar_events": "1.0.6",
22
- "@wix/calendar_schedule-time-frames": "1.0.4",
22
+ "@wix/calendar_schedule-time-frames": "1.0.5",
23
23
  "@wix/calendar_schedules": "1.0.5"
24
24
  },
25
25
  "devDependencies": {
@@ -45,5 +45,5 @@
45
45
  "fqdn": ""
46
46
  }
47
47
  },
48
- "falconPackageHash": "9c8a596125f051fb8c57a35921e342b21f38bfdbedbf7b883957eb61"
48
+ "falconPackageHash": "5a4909fb5e5fcc6812533bc97d76d94a09082193b87773d93d6c16dd"
49
49
  }
@@ -4116,7 +4116,7 @@ interface DomainEvent extends DomainEventBodyOneOf {
4116
4116
  slug?: string;
4117
4117
  /** ID of the entity associated with the event. */
4118
4118
  entityId?: string;
4119
- /** Event timestamp. */
4119
+ /** Event timestamp in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601) format and UTC time. For example: 2020-04-26T13:57:50.699Z */
4120
4120
  eventTime?: Date;
4121
4121
  /**
4122
4122
  * Whether the event was triggered as a result of a privacy regulation application
@@ -4239,7 +4239,7 @@ interface EventMetadata extends BaseEventMetadata {
4239
4239
  slug?: string;
4240
4240
  /** ID of the entity associated with the event. */
4241
4241
  entityId?: string;
4242
- /** Event timestamp. */
4242
+ /** Event timestamp in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601) format and UTC time. For example: 2020-04-26T13:57:50.699Z */
4243
4243
  eventTime?: Date;
4244
4244
  /**
4245
4245
  * Whether the event was triggered as a result of a privacy regulation application
@@ -4262,6 +4262,13 @@ interface ScheduleTimeFrameUpdatedEnvelope {
4262
4262
  entity: ScheduleTimeFrame;
4263
4263
  metadata: EventMetadata;
4264
4264
  }
4265
+ interface ScheduleTimeFrameCreatedEnvelope {
4266
+ entity: ScheduleTimeFrame;
4267
+ metadata: EventMetadata;
4268
+ }
4269
+ interface ScheduleTimeFrameDeletedEnvelope {
4270
+ metadata: EventMetadata;
4271
+ }
4265
4272
  interface GetScheduleTimeFrameOptions {
4266
4273
  /**
4267
4274
  * Optional time zone used to adjust the returned time.
@@ -4295,6 +4302,8 @@ interface ListScheduleTimeFramesSignature {
4295
4302
  (ids: string[], options?: ListScheduleTimeFramesOptions | undefined): Promise<ListScheduleTimeFramesResponse & ListScheduleTimeFramesResponseNonNullableFields>;
4296
4303
  }
4297
4304
  declare const onScheduleTimeFrameUpdated$1: EventDefinition<ScheduleTimeFrameUpdatedEnvelope, "wix.calendar.v3.schedule_time_frame_updated">;
4305
+ declare const onScheduleTimeFrameCreated$1: EventDefinition<ScheduleTimeFrameCreatedEnvelope, "wix.calendar.v3.schedule_time_frame_created">;
4306
+ declare const onScheduleTimeFrameDeleted$1: EventDefinition<ScheduleTimeFrameDeletedEnvelope, "wix.calendar.v3.schedule_time_frame_deleted">;
4298
4307
 
4299
4308
  declare function createEventModule<T extends EventDefinition<any, string>>(eventDefinition: T): BuildEventDefinition<T> & T;
4300
4309
 
@@ -4305,6 +4314,14 @@ type _publicOnScheduleTimeFrameUpdatedType = typeof onScheduleTimeFrameUpdated$1
4305
4314
  /** */
4306
4315
  declare const onScheduleTimeFrameUpdated: ReturnType<typeof createEventModule<_publicOnScheduleTimeFrameUpdatedType>>;
4307
4316
 
4317
+ type _publicOnScheduleTimeFrameCreatedType = typeof onScheduleTimeFrameCreated$1;
4318
+ /** */
4319
+ declare const onScheduleTimeFrameCreated: ReturnType<typeof createEventModule<_publicOnScheduleTimeFrameCreatedType>>;
4320
+
4321
+ type _publicOnScheduleTimeFrameDeletedType = typeof onScheduleTimeFrameDeleted$1;
4322
+ /** */
4323
+ declare const onScheduleTimeFrameDeleted: ReturnType<typeof createEventModule<_publicOnScheduleTimeFrameDeletedType>>;
4324
+
4308
4325
  type context_ActionEvent = ActionEvent;
4309
4326
  type context_Address = Address;
4310
4327
  type context_AddressHint = AddressHint;
@@ -4345,6 +4362,8 @@ type context_ResolutionMethod = ResolutionMethod;
4345
4362
  declare const context_ResolutionMethod: typeof ResolutionMethod;
4346
4363
  type context_RestoreInfo = RestoreInfo;
4347
4364
  type context_ScheduleTimeFrame = ScheduleTimeFrame;
4365
+ type context_ScheduleTimeFrameCreatedEnvelope = ScheduleTimeFrameCreatedEnvelope;
4366
+ type context_ScheduleTimeFrameDeletedEnvelope = ScheduleTimeFrameDeletedEnvelope;
4348
4367
  type context_ScheduleTimeFrameNonNullableFields = ScheduleTimeFrameNonNullableFields;
4349
4368
  type context_ScheduleTimeFrameUpdatedEnvelope = ScheduleTimeFrameUpdatedEnvelope;
4350
4369
  type context_ScheduleTimeFrameUpdatedWithMetadata = ScheduleTimeFrameUpdatedWithMetadata;
@@ -4361,12 +4380,16 @@ type context_Translation = Translation;
4361
4380
  type context_WebhookIdentityType = WebhookIdentityType;
4362
4381
  declare const context_WebhookIdentityType: typeof WebhookIdentityType;
4363
4382
  type context_ZonedDate = ZonedDate;
4383
+ type context__publicOnScheduleTimeFrameCreatedType = _publicOnScheduleTimeFrameCreatedType;
4384
+ type context__publicOnScheduleTimeFrameDeletedType = _publicOnScheduleTimeFrameDeletedType;
4364
4385
  type context__publicOnScheduleTimeFrameUpdatedType = _publicOnScheduleTimeFrameUpdatedType;
4365
4386
  declare const context_getScheduleTimeFrame: typeof getScheduleTimeFrame;
4366
4387
  declare const context_listScheduleTimeFrames: typeof listScheduleTimeFrames;
4388
+ declare const context_onScheduleTimeFrameCreated: typeof onScheduleTimeFrameCreated;
4389
+ declare const context_onScheduleTimeFrameDeleted: typeof onScheduleTimeFrameDeleted;
4367
4390
  declare const context_onScheduleTimeFrameUpdated: typeof onScheduleTimeFrameUpdated;
4368
4391
  declare namespace context {
4369
- export { type context_ActionEvent as ActionEvent, type context_Address as Address, type context_AddressHint as AddressHint, type context_BaseEventMetadata as BaseEventMetadata, type context_BusinessSchedule as BusinessSchedule, type context_Categories as Categories, type context_ChangeContext as ChangeContext, type context_ChangeContextPayloadOneOf as ChangeContextPayloadOneOf, type context_ConsentPolicy as ConsentPolicy, context_DayOfWeek as DayOfWeek, type context_DomainEvent as DomainEvent, type context_DomainEventBodyOneOf as DomainEventBodyOneOf, type context_Empty as Empty, type context_EntityCreatedEvent as EntityCreatedEvent, type context_EntityDeletedEvent as EntityDeletedEvent, type context_EntityUpdatedEvent as EntityUpdatedEvent, type context_EventMetadata as EventMetadata, type context_GeoCoordinates as GeoCoordinates, type context_GetScheduleTimeFrameOptions as GetScheduleTimeFrameOptions, type context_GetScheduleTimeFrameRequest as GetScheduleTimeFrameRequest, type context_GetScheduleTimeFrameResponse as GetScheduleTimeFrameResponse, type context_GetScheduleTimeFrameResponseNonNullableFields as GetScheduleTimeFrameResponseNonNullableFields, type context_IdentificationData as IdentificationData, type context_IdentificationDataIdOneOf as IdentificationDataIdOneOf, type context_ListScheduleTimeFramesOptions as ListScheduleTimeFramesOptions, type context_ListScheduleTimeFramesRequest as ListScheduleTimeFramesRequest, type context_ListScheduleTimeFramesResponse as ListScheduleTimeFramesResponse, type context_ListScheduleTimeFramesResponseNonNullableFields as ListScheduleTimeFramesResponseNonNullableFields, type context_Locale as Locale, type context_MessageEnvelope as MessageEnvelope, type context_Multilingual as Multilingual, context_PlacementType as PlacementType, type context_Properties as Properties, type context_PropertiesChange as PropertiesChange, context_ResolutionMethod as ResolutionMethod, type context_RestoreInfo as RestoreInfo, type context_ScheduleTimeFrame as ScheduleTimeFrame, type context_ScheduleTimeFrameNonNullableFields as ScheduleTimeFrameNonNullableFields, type context_ScheduleTimeFrameUpdatedEnvelope as ScheduleTimeFrameUpdatedEnvelope, type context_ScheduleTimeFrameUpdatedWithMetadata as ScheduleTimeFrameUpdatedWithMetadata, type context_SiteCloned as SiteCloned, type context_SiteCreated as SiteCreated, type context_SitePropertiesEvent as SitePropertiesEvent, type context_SitePropertiesNotification as SitePropertiesNotification, type context_SpecialHourPeriod as SpecialHourPeriod, context_Status as Status, type context_SupportedLanguage as SupportedLanguage, type context_TimePeriod as TimePeriod, type context_Translation as Translation, context_WebhookIdentityType as WebhookIdentityType, type context_ZonedDate as ZonedDate, type context__publicOnScheduleTimeFrameUpdatedType as _publicOnScheduleTimeFrameUpdatedType, context_getScheduleTimeFrame as getScheduleTimeFrame, context_listScheduleTimeFrames as listScheduleTimeFrames, context_onScheduleTimeFrameUpdated as onScheduleTimeFrameUpdated, onScheduleTimeFrameUpdated$1 as publicOnScheduleTimeFrameUpdated };
4392
+ export { type context_ActionEvent as ActionEvent, type context_Address as Address, type context_AddressHint as AddressHint, type context_BaseEventMetadata as BaseEventMetadata, type context_BusinessSchedule as BusinessSchedule, type context_Categories as Categories, type context_ChangeContext as ChangeContext, type context_ChangeContextPayloadOneOf as ChangeContextPayloadOneOf, type context_ConsentPolicy as ConsentPolicy, context_DayOfWeek as DayOfWeek, type context_DomainEvent as DomainEvent, type context_DomainEventBodyOneOf as DomainEventBodyOneOf, type context_Empty as Empty, type context_EntityCreatedEvent as EntityCreatedEvent, type context_EntityDeletedEvent as EntityDeletedEvent, type context_EntityUpdatedEvent as EntityUpdatedEvent, type context_EventMetadata as EventMetadata, type context_GeoCoordinates as GeoCoordinates, type context_GetScheduleTimeFrameOptions as GetScheduleTimeFrameOptions, type context_GetScheduleTimeFrameRequest as GetScheduleTimeFrameRequest, type context_GetScheduleTimeFrameResponse as GetScheduleTimeFrameResponse, type context_GetScheduleTimeFrameResponseNonNullableFields as GetScheduleTimeFrameResponseNonNullableFields, type context_IdentificationData as IdentificationData, type context_IdentificationDataIdOneOf as IdentificationDataIdOneOf, type context_ListScheduleTimeFramesOptions as ListScheduleTimeFramesOptions, type context_ListScheduleTimeFramesRequest as ListScheduleTimeFramesRequest, type context_ListScheduleTimeFramesResponse as ListScheduleTimeFramesResponse, type context_ListScheduleTimeFramesResponseNonNullableFields as ListScheduleTimeFramesResponseNonNullableFields, type context_Locale as Locale, type context_MessageEnvelope as MessageEnvelope, type context_Multilingual as Multilingual, context_PlacementType as PlacementType, type context_Properties as Properties, type context_PropertiesChange as PropertiesChange, context_ResolutionMethod as ResolutionMethod, type context_RestoreInfo as RestoreInfo, type context_ScheduleTimeFrame as ScheduleTimeFrame, type context_ScheduleTimeFrameCreatedEnvelope as ScheduleTimeFrameCreatedEnvelope, type context_ScheduleTimeFrameDeletedEnvelope as ScheduleTimeFrameDeletedEnvelope, type context_ScheduleTimeFrameNonNullableFields as ScheduleTimeFrameNonNullableFields, type context_ScheduleTimeFrameUpdatedEnvelope as ScheduleTimeFrameUpdatedEnvelope, type context_ScheduleTimeFrameUpdatedWithMetadata as ScheduleTimeFrameUpdatedWithMetadata, type context_SiteCloned as SiteCloned, type context_SiteCreated as SiteCreated, type context_SitePropertiesEvent as SitePropertiesEvent, type context_SitePropertiesNotification as SitePropertiesNotification, type context_SpecialHourPeriod as SpecialHourPeriod, context_Status as Status, type context_SupportedLanguage as SupportedLanguage, type context_TimePeriod as TimePeriod, type context_Translation as Translation, context_WebhookIdentityType as WebhookIdentityType, type context_ZonedDate as ZonedDate, type context__publicOnScheduleTimeFrameCreatedType as _publicOnScheduleTimeFrameCreatedType, type context__publicOnScheduleTimeFrameDeletedType as _publicOnScheduleTimeFrameDeletedType, type context__publicOnScheduleTimeFrameUpdatedType as _publicOnScheduleTimeFrameUpdatedType, context_getScheduleTimeFrame as getScheduleTimeFrame, context_listScheduleTimeFrames as listScheduleTimeFrames, context_onScheduleTimeFrameCreated as onScheduleTimeFrameCreated, context_onScheduleTimeFrameDeleted as onScheduleTimeFrameDeleted, context_onScheduleTimeFrameUpdated as onScheduleTimeFrameUpdated, onScheduleTimeFrameCreated$1 as publicOnScheduleTimeFrameCreated, onScheduleTimeFrameDeleted$1 as publicOnScheduleTimeFrameDeleted, onScheduleTimeFrameUpdated$1 as publicOnScheduleTimeFrameUpdated };
4370
4393
  }
4371
4394
 
4372
4395
  export { context$2 as events, context as scheduleTimeFrames, context$1 as schedules };
@@ -4116,7 +4116,7 @@ interface DomainEvent extends DomainEventBodyOneOf {
4116
4116
  slug?: string;
4117
4117
  /** ID of the entity associated with the event. */
4118
4118
  entityId?: string;
4119
- /** Event timestamp. */
4119
+ /** Event timestamp in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601) format and UTC time. For example: 2020-04-26T13:57:50.699Z */
4120
4120
  eventTime?: Date;
4121
4121
  /**
4122
4122
  * Whether the event was triggered as a result of a privacy regulation application
@@ -4239,7 +4239,7 @@ interface EventMetadata extends BaseEventMetadata {
4239
4239
  slug?: string;
4240
4240
  /** ID of the entity associated with the event. */
4241
4241
  entityId?: string;
4242
- /** Event timestamp. */
4242
+ /** Event timestamp in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601) format and UTC time. For example: 2020-04-26T13:57:50.699Z */
4243
4243
  eventTime?: Date;
4244
4244
  /**
4245
4245
  * Whether the event was triggered as a result of a privacy regulation application
@@ -4262,6 +4262,13 @@ interface ScheduleTimeFrameUpdatedEnvelope {
4262
4262
  entity: ScheduleTimeFrame;
4263
4263
  metadata: EventMetadata;
4264
4264
  }
4265
+ interface ScheduleTimeFrameCreatedEnvelope {
4266
+ entity: ScheduleTimeFrame;
4267
+ metadata: EventMetadata;
4268
+ }
4269
+ interface ScheduleTimeFrameDeletedEnvelope {
4270
+ metadata: EventMetadata;
4271
+ }
4265
4272
  interface GetScheduleTimeFrameOptions {
4266
4273
  /**
4267
4274
  * Optional time zone used to adjust the returned time.
@@ -4295,6 +4302,8 @@ interface ListScheduleTimeFramesSignature {
4295
4302
  (ids: string[], options?: ListScheduleTimeFramesOptions | undefined): Promise<ListScheduleTimeFramesResponse & ListScheduleTimeFramesResponseNonNullableFields>;
4296
4303
  }
4297
4304
  declare const onScheduleTimeFrameUpdated$1: EventDefinition<ScheduleTimeFrameUpdatedEnvelope, "wix.calendar.v3.schedule_time_frame_updated">;
4305
+ declare const onScheduleTimeFrameCreated$1: EventDefinition<ScheduleTimeFrameCreatedEnvelope, "wix.calendar.v3.schedule_time_frame_created">;
4306
+ declare const onScheduleTimeFrameDeleted$1: EventDefinition<ScheduleTimeFrameDeletedEnvelope, "wix.calendar.v3.schedule_time_frame_deleted">;
4298
4307
 
4299
4308
  declare function createEventModule<T extends EventDefinition<any, string>>(eventDefinition: T): BuildEventDefinition<T> & T;
4300
4309
 
@@ -4305,6 +4314,14 @@ type _publicOnScheduleTimeFrameUpdatedType = typeof onScheduleTimeFrameUpdated$1
4305
4314
  /** */
4306
4315
  declare const onScheduleTimeFrameUpdated: ReturnType<typeof createEventModule<_publicOnScheduleTimeFrameUpdatedType>>;
4307
4316
 
4317
+ type _publicOnScheduleTimeFrameCreatedType = typeof onScheduleTimeFrameCreated$1;
4318
+ /** */
4319
+ declare const onScheduleTimeFrameCreated: ReturnType<typeof createEventModule<_publicOnScheduleTimeFrameCreatedType>>;
4320
+
4321
+ type _publicOnScheduleTimeFrameDeletedType = typeof onScheduleTimeFrameDeleted$1;
4322
+ /** */
4323
+ declare const onScheduleTimeFrameDeleted: ReturnType<typeof createEventModule<_publicOnScheduleTimeFrameDeletedType>>;
4324
+
4308
4325
  type index_d_ActionEvent = ActionEvent;
4309
4326
  type index_d_Address = Address;
4310
4327
  type index_d_AddressHint = AddressHint;
@@ -4345,6 +4362,8 @@ type index_d_ResolutionMethod = ResolutionMethod;
4345
4362
  declare const index_d_ResolutionMethod: typeof ResolutionMethod;
4346
4363
  type index_d_RestoreInfo = RestoreInfo;
4347
4364
  type index_d_ScheduleTimeFrame = ScheduleTimeFrame;
4365
+ type index_d_ScheduleTimeFrameCreatedEnvelope = ScheduleTimeFrameCreatedEnvelope;
4366
+ type index_d_ScheduleTimeFrameDeletedEnvelope = ScheduleTimeFrameDeletedEnvelope;
4348
4367
  type index_d_ScheduleTimeFrameNonNullableFields = ScheduleTimeFrameNonNullableFields;
4349
4368
  type index_d_ScheduleTimeFrameUpdatedEnvelope = ScheduleTimeFrameUpdatedEnvelope;
4350
4369
  type index_d_ScheduleTimeFrameUpdatedWithMetadata = ScheduleTimeFrameUpdatedWithMetadata;
@@ -4361,12 +4380,16 @@ type index_d_Translation = Translation;
4361
4380
  type index_d_WebhookIdentityType = WebhookIdentityType;
4362
4381
  declare const index_d_WebhookIdentityType: typeof WebhookIdentityType;
4363
4382
  type index_d_ZonedDate = ZonedDate;
4383
+ type index_d__publicOnScheduleTimeFrameCreatedType = _publicOnScheduleTimeFrameCreatedType;
4384
+ type index_d__publicOnScheduleTimeFrameDeletedType = _publicOnScheduleTimeFrameDeletedType;
4364
4385
  type index_d__publicOnScheduleTimeFrameUpdatedType = _publicOnScheduleTimeFrameUpdatedType;
4365
4386
  declare const index_d_getScheduleTimeFrame: typeof getScheduleTimeFrame;
4366
4387
  declare const index_d_listScheduleTimeFrames: typeof listScheduleTimeFrames;
4388
+ declare const index_d_onScheduleTimeFrameCreated: typeof onScheduleTimeFrameCreated;
4389
+ declare const index_d_onScheduleTimeFrameDeleted: typeof onScheduleTimeFrameDeleted;
4367
4390
  declare const index_d_onScheduleTimeFrameUpdated: typeof onScheduleTimeFrameUpdated;
4368
4391
  declare namespace index_d {
4369
- export { type index_d_ActionEvent as ActionEvent, type index_d_Address as Address, type index_d_AddressHint as AddressHint, type index_d_BaseEventMetadata as BaseEventMetadata, type index_d_BusinessSchedule as BusinessSchedule, type index_d_Categories as Categories, type index_d_ChangeContext as ChangeContext, type index_d_ChangeContextPayloadOneOf as ChangeContextPayloadOneOf, type index_d_ConsentPolicy as ConsentPolicy, index_d_DayOfWeek as DayOfWeek, type index_d_DomainEvent as DomainEvent, type index_d_DomainEventBodyOneOf as DomainEventBodyOneOf, type index_d_Empty as Empty, type index_d_EntityCreatedEvent as EntityCreatedEvent, type index_d_EntityDeletedEvent as EntityDeletedEvent, type index_d_EntityUpdatedEvent as EntityUpdatedEvent, type index_d_EventMetadata as EventMetadata, type index_d_GeoCoordinates as GeoCoordinates, type index_d_GetScheduleTimeFrameOptions as GetScheduleTimeFrameOptions, type index_d_GetScheduleTimeFrameRequest as GetScheduleTimeFrameRequest, type index_d_GetScheduleTimeFrameResponse as GetScheduleTimeFrameResponse, type index_d_GetScheduleTimeFrameResponseNonNullableFields as GetScheduleTimeFrameResponseNonNullableFields, type index_d_IdentificationData as IdentificationData, type index_d_IdentificationDataIdOneOf as IdentificationDataIdOneOf, type index_d_ListScheduleTimeFramesOptions as ListScheduleTimeFramesOptions, type index_d_ListScheduleTimeFramesRequest as ListScheduleTimeFramesRequest, type index_d_ListScheduleTimeFramesResponse as ListScheduleTimeFramesResponse, type index_d_ListScheduleTimeFramesResponseNonNullableFields as ListScheduleTimeFramesResponseNonNullableFields, type index_d_Locale as Locale, type index_d_MessageEnvelope as MessageEnvelope, type index_d_Multilingual as Multilingual, index_d_PlacementType as PlacementType, type index_d_Properties as Properties, type index_d_PropertiesChange as PropertiesChange, index_d_ResolutionMethod as ResolutionMethod, type index_d_RestoreInfo as RestoreInfo, type index_d_ScheduleTimeFrame as ScheduleTimeFrame, type index_d_ScheduleTimeFrameNonNullableFields as ScheduleTimeFrameNonNullableFields, type index_d_ScheduleTimeFrameUpdatedEnvelope as ScheduleTimeFrameUpdatedEnvelope, type index_d_ScheduleTimeFrameUpdatedWithMetadata as ScheduleTimeFrameUpdatedWithMetadata, type index_d_SiteCloned as SiteCloned, type index_d_SiteCreated as SiteCreated, type index_d_SitePropertiesEvent as SitePropertiesEvent, type index_d_SitePropertiesNotification as SitePropertiesNotification, type index_d_SpecialHourPeriod as SpecialHourPeriod, index_d_Status as Status, type index_d_SupportedLanguage as SupportedLanguage, type index_d_TimePeriod as TimePeriod, type index_d_Translation as Translation, index_d_WebhookIdentityType as WebhookIdentityType, type index_d_ZonedDate as ZonedDate, type index_d__publicOnScheduleTimeFrameUpdatedType as _publicOnScheduleTimeFrameUpdatedType, index_d_getScheduleTimeFrame as getScheduleTimeFrame, index_d_listScheduleTimeFrames as listScheduleTimeFrames, index_d_onScheduleTimeFrameUpdated as onScheduleTimeFrameUpdated, onScheduleTimeFrameUpdated$1 as publicOnScheduleTimeFrameUpdated };
4392
+ export { type index_d_ActionEvent as ActionEvent, type index_d_Address as Address, type index_d_AddressHint as AddressHint, type index_d_BaseEventMetadata as BaseEventMetadata, type index_d_BusinessSchedule as BusinessSchedule, type index_d_Categories as Categories, type index_d_ChangeContext as ChangeContext, type index_d_ChangeContextPayloadOneOf as ChangeContextPayloadOneOf, type index_d_ConsentPolicy as ConsentPolicy, index_d_DayOfWeek as DayOfWeek, type index_d_DomainEvent as DomainEvent, type index_d_DomainEventBodyOneOf as DomainEventBodyOneOf, type index_d_Empty as Empty, type index_d_EntityCreatedEvent as EntityCreatedEvent, type index_d_EntityDeletedEvent as EntityDeletedEvent, type index_d_EntityUpdatedEvent as EntityUpdatedEvent, type index_d_EventMetadata as EventMetadata, type index_d_GeoCoordinates as GeoCoordinates, type index_d_GetScheduleTimeFrameOptions as GetScheduleTimeFrameOptions, type index_d_GetScheduleTimeFrameRequest as GetScheduleTimeFrameRequest, type index_d_GetScheduleTimeFrameResponse as GetScheduleTimeFrameResponse, type index_d_GetScheduleTimeFrameResponseNonNullableFields as GetScheduleTimeFrameResponseNonNullableFields, type index_d_IdentificationData as IdentificationData, type index_d_IdentificationDataIdOneOf as IdentificationDataIdOneOf, type index_d_ListScheduleTimeFramesOptions as ListScheduleTimeFramesOptions, type index_d_ListScheduleTimeFramesRequest as ListScheduleTimeFramesRequest, type index_d_ListScheduleTimeFramesResponse as ListScheduleTimeFramesResponse, type index_d_ListScheduleTimeFramesResponseNonNullableFields as ListScheduleTimeFramesResponseNonNullableFields, type index_d_Locale as Locale, type index_d_MessageEnvelope as MessageEnvelope, type index_d_Multilingual as Multilingual, index_d_PlacementType as PlacementType, type index_d_Properties as Properties, type index_d_PropertiesChange as PropertiesChange, index_d_ResolutionMethod as ResolutionMethod, type index_d_RestoreInfo as RestoreInfo, type index_d_ScheduleTimeFrame as ScheduleTimeFrame, type index_d_ScheduleTimeFrameCreatedEnvelope as ScheduleTimeFrameCreatedEnvelope, type index_d_ScheduleTimeFrameDeletedEnvelope as ScheduleTimeFrameDeletedEnvelope, type index_d_ScheduleTimeFrameNonNullableFields as ScheduleTimeFrameNonNullableFields, type index_d_ScheduleTimeFrameUpdatedEnvelope as ScheduleTimeFrameUpdatedEnvelope, type index_d_ScheduleTimeFrameUpdatedWithMetadata as ScheduleTimeFrameUpdatedWithMetadata, type index_d_SiteCloned as SiteCloned, type index_d_SiteCreated as SiteCreated, type index_d_SitePropertiesEvent as SitePropertiesEvent, type index_d_SitePropertiesNotification as SitePropertiesNotification, type index_d_SpecialHourPeriod as SpecialHourPeriod, index_d_Status as Status, type index_d_SupportedLanguage as SupportedLanguage, type index_d_TimePeriod as TimePeriod, type index_d_Translation as Translation, index_d_WebhookIdentityType as WebhookIdentityType, type index_d_ZonedDate as ZonedDate, type index_d__publicOnScheduleTimeFrameCreatedType as _publicOnScheduleTimeFrameCreatedType, type index_d__publicOnScheduleTimeFrameDeletedType as _publicOnScheduleTimeFrameDeletedType, type index_d__publicOnScheduleTimeFrameUpdatedType as _publicOnScheduleTimeFrameUpdatedType, index_d_getScheduleTimeFrame as getScheduleTimeFrame, index_d_listScheduleTimeFrames as listScheduleTimeFrames, index_d_onScheduleTimeFrameCreated as onScheduleTimeFrameCreated, index_d_onScheduleTimeFrameDeleted as onScheduleTimeFrameDeleted, index_d_onScheduleTimeFrameUpdated as onScheduleTimeFrameUpdated, onScheduleTimeFrameCreated$1 as publicOnScheduleTimeFrameCreated, onScheduleTimeFrameDeleted$1 as publicOnScheduleTimeFrameDeleted, onScheduleTimeFrameUpdated$1 as publicOnScheduleTimeFrameUpdated };
4370
4393
  }
4371
4394
 
4372
4395
  export { index_d$2 as events, index_d as scheduleTimeFrames, index_d$1 as schedules };