@wix/calendar 1.0.7 → 1.0.9

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.9",
4
4
  "publishConfig": {
5
5
  "registry": "https://registry.npmjs.org/",
6
6
  "access": "public"
@@ -19,8 +19,8 @@
19
19
  ],
20
20
  "dependencies": {
21
21
  "@wix/calendar_events": "1.0.6",
22
- "@wix/calendar_schedule-time-frames": "1.0.4",
23
- "@wix/calendar_schedules": "1.0.5"
22
+ "@wix/calendar_schedule-time-frames": "1.0.5",
23
+ "@wix/calendar_schedules": "1.0.6"
24
24
  },
25
25
  "devDependencies": {
26
26
  "glob": "^10.4.1",
@@ -45,5 +45,5 @@
45
45
  "fqdn": ""
46
46
  }
47
47
  },
48
- "falconPackageHash": "9c8a596125f051fb8c57a35921e342b21f38bfdbedbf7b883957eb61"
48
+ "falconPackageHash": "b88b79d3f9ce909922c045af2a599ff17fcaa103c9e38000b6ea9827"
49
49
  }
@@ -2836,7 +2836,12 @@ declare enum Namespace {
2836
2836
  */
2837
2837
  BRANDED_FIRST = "BRANDED_FIRST",
2838
2838
  /** Nownia.com Siteless account management for Ai Scheduling Assistant. */
2839
- NOWNIA = "NOWNIA"
2839
+ NOWNIA = "NOWNIA",
2840
+ /**
2841
+ * UGC Templates are templates that are created by users for personal use and to sale to other users.
2842
+ * The Partners company owns this namespace.
2843
+ */
2844
+ UGC_TEMPLATE = "UGC_TEMPLATE"
2840
2845
  }
2841
2846
  /** Site transferred to another user. */
2842
2847
  interface SiteTransferred {
@@ -4116,7 +4121,7 @@ interface DomainEvent extends DomainEventBodyOneOf {
4116
4121
  slug?: string;
4117
4122
  /** ID of the entity associated with the event. */
4118
4123
  entityId?: string;
4119
- /** Event timestamp. */
4124
+ /** 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
4125
  eventTime?: Date;
4121
4126
  /**
4122
4127
  * Whether the event was triggered as a result of a privacy regulation application
@@ -4239,7 +4244,7 @@ interface EventMetadata extends BaseEventMetadata {
4239
4244
  slug?: string;
4240
4245
  /** ID of the entity associated with the event. */
4241
4246
  entityId?: string;
4242
- /** Event timestamp. */
4247
+ /** 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
4248
  eventTime?: Date;
4244
4249
  /**
4245
4250
  * Whether the event was triggered as a result of a privacy regulation application
@@ -4262,6 +4267,13 @@ interface ScheduleTimeFrameUpdatedEnvelope {
4262
4267
  entity: ScheduleTimeFrame;
4263
4268
  metadata: EventMetadata;
4264
4269
  }
4270
+ interface ScheduleTimeFrameCreatedEnvelope {
4271
+ entity: ScheduleTimeFrame;
4272
+ metadata: EventMetadata;
4273
+ }
4274
+ interface ScheduleTimeFrameDeletedEnvelope {
4275
+ metadata: EventMetadata;
4276
+ }
4265
4277
  interface GetScheduleTimeFrameOptions {
4266
4278
  /**
4267
4279
  * Optional time zone used to adjust the returned time.
@@ -4295,6 +4307,8 @@ interface ListScheduleTimeFramesSignature {
4295
4307
  (ids: string[], options?: ListScheduleTimeFramesOptions | undefined): Promise<ListScheduleTimeFramesResponse & ListScheduleTimeFramesResponseNonNullableFields>;
4296
4308
  }
4297
4309
  declare const onScheduleTimeFrameUpdated$1: EventDefinition<ScheduleTimeFrameUpdatedEnvelope, "wix.calendar.v3.schedule_time_frame_updated">;
4310
+ declare const onScheduleTimeFrameCreated$1: EventDefinition<ScheduleTimeFrameCreatedEnvelope, "wix.calendar.v3.schedule_time_frame_created">;
4311
+ declare const onScheduleTimeFrameDeleted$1: EventDefinition<ScheduleTimeFrameDeletedEnvelope, "wix.calendar.v3.schedule_time_frame_deleted">;
4298
4312
 
4299
4313
  declare function createEventModule<T extends EventDefinition<any, string>>(eventDefinition: T): BuildEventDefinition<T> & T;
4300
4314
 
@@ -4305,6 +4319,14 @@ type _publicOnScheduleTimeFrameUpdatedType = typeof onScheduleTimeFrameUpdated$1
4305
4319
  /** */
4306
4320
  declare const onScheduleTimeFrameUpdated: ReturnType<typeof createEventModule<_publicOnScheduleTimeFrameUpdatedType>>;
4307
4321
 
4322
+ type _publicOnScheduleTimeFrameCreatedType = typeof onScheduleTimeFrameCreated$1;
4323
+ /** */
4324
+ declare const onScheduleTimeFrameCreated: ReturnType<typeof createEventModule<_publicOnScheduleTimeFrameCreatedType>>;
4325
+
4326
+ type _publicOnScheduleTimeFrameDeletedType = typeof onScheduleTimeFrameDeleted$1;
4327
+ /** */
4328
+ declare const onScheduleTimeFrameDeleted: ReturnType<typeof createEventModule<_publicOnScheduleTimeFrameDeletedType>>;
4329
+
4308
4330
  type context_ActionEvent = ActionEvent;
4309
4331
  type context_Address = Address;
4310
4332
  type context_AddressHint = AddressHint;
@@ -4345,6 +4367,8 @@ type context_ResolutionMethod = ResolutionMethod;
4345
4367
  declare const context_ResolutionMethod: typeof ResolutionMethod;
4346
4368
  type context_RestoreInfo = RestoreInfo;
4347
4369
  type context_ScheduleTimeFrame = ScheduleTimeFrame;
4370
+ type context_ScheduleTimeFrameCreatedEnvelope = ScheduleTimeFrameCreatedEnvelope;
4371
+ type context_ScheduleTimeFrameDeletedEnvelope = ScheduleTimeFrameDeletedEnvelope;
4348
4372
  type context_ScheduleTimeFrameNonNullableFields = ScheduleTimeFrameNonNullableFields;
4349
4373
  type context_ScheduleTimeFrameUpdatedEnvelope = ScheduleTimeFrameUpdatedEnvelope;
4350
4374
  type context_ScheduleTimeFrameUpdatedWithMetadata = ScheduleTimeFrameUpdatedWithMetadata;
@@ -4361,12 +4385,16 @@ type context_Translation = Translation;
4361
4385
  type context_WebhookIdentityType = WebhookIdentityType;
4362
4386
  declare const context_WebhookIdentityType: typeof WebhookIdentityType;
4363
4387
  type context_ZonedDate = ZonedDate;
4388
+ type context__publicOnScheduleTimeFrameCreatedType = _publicOnScheduleTimeFrameCreatedType;
4389
+ type context__publicOnScheduleTimeFrameDeletedType = _publicOnScheduleTimeFrameDeletedType;
4364
4390
  type context__publicOnScheduleTimeFrameUpdatedType = _publicOnScheduleTimeFrameUpdatedType;
4365
4391
  declare const context_getScheduleTimeFrame: typeof getScheduleTimeFrame;
4366
4392
  declare const context_listScheduleTimeFrames: typeof listScheduleTimeFrames;
4393
+ declare const context_onScheduleTimeFrameCreated: typeof onScheduleTimeFrameCreated;
4394
+ declare const context_onScheduleTimeFrameDeleted: typeof onScheduleTimeFrameDeleted;
4367
4395
  declare const context_onScheduleTimeFrameUpdated: typeof onScheduleTimeFrameUpdated;
4368
4396
  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 };
4397
+ 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
4398
  }
4371
4399
 
4372
4400
  export { context$2 as events, context as scheduleTimeFrames, context$1 as schedules };
@@ -2836,7 +2836,12 @@ declare enum Namespace {
2836
2836
  */
2837
2837
  BRANDED_FIRST = "BRANDED_FIRST",
2838
2838
  /** Nownia.com Siteless account management for Ai Scheduling Assistant. */
2839
- NOWNIA = "NOWNIA"
2839
+ NOWNIA = "NOWNIA",
2840
+ /**
2841
+ * UGC Templates are templates that are created by users for personal use and to sale to other users.
2842
+ * The Partners company owns this namespace.
2843
+ */
2844
+ UGC_TEMPLATE = "UGC_TEMPLATE"
2840
2845
  }
2841
2846
  /** Site transferred to another user. */
2842
2847
  interface SiteTransferred {
@@ -4116,7 +4121,7 @@ interface DomainEvent extends DomainEventBodyOneOf {
4116
4121
  slug?: string;
4117
4122
  /** ID of the entity associated with the event. */
4118
4123
  entityId?: string;
4119
- /** Event timestamp. */
4124
+ /** 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
4125
  eventTime?: Date;
4121
4126
  /**
4122
4127
  * Whether the event was triggered as a result of a privacy regulation application
@@ -4239,7 +4244,7 @@ interface EventMetadata extends BaseEventMetadata {
4239
4244
  slug?: string;
4240
4245
  /** ID of the entity associated with the event. */
4241
4246
  entityId?: string;
4242
- /** Event timestamp. */
4247
+ /** 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
4248
  eventTime?: Date;
4244
4249
  /**
4245
4250
  * Whether the event was triggered as a result of a privacy regulation application
@@ -4262,6 +4267,13 @@ interface ScheduleTimeFrameUpdatedEnvelope {
4262
4267
  entity: ScheduleTimeFrame;
4263
4268
  metadata: EventMetadata;
4264
4269
  }
4270
+ interface ScheduleTimeFrameCreatedEnvelope {
4271
+ entity: ScheduleTimeFrame;
4272
+ metadata: EventMetadata;
4273
+ }
4274
+ interface ScheduleTimeFrameDeletedEnvelope {
4275
+ metadata: EventMetadata;
4276
+ }
4265
4277
  interface GetScheduleTimeFrameOptions {
4266
4278
  /**
4267
4279
  * Optional time zone used to adjust the returned time.
@@ -4295,6 +4307,8 @@ interface ListScheduleTimeFramesSignature {
4295
4307
  (ids: string[], options?: ListScheduleTimeFramesOptions | undefined): Promise<ListScheduleTimeFramesResponse & ListScheduleTimeFramesResponseNonNullableFields>;
4296
4308
  }
4297
4309
  declare const onScheduleTimeFrameUpdated$1: EventDefinition<ScheduleTimeFrameUpdatedEnvelope, "wix.calendar.v3.schedule_time_frame_updated">;
4310
+ declare const onScheduleTimeFrameCreated$1: EventDefinition<ScheduleTimeFrameCreatedEnvelope, "wix.calendar.v3.schedule_time_frame_created">;
4311
+ declare const onScheduleTimeFrameDeleted$1: EventDefinition<ScheduleTimeFrameDeletedEnvelope, "wix.calendar.v3.schedule_time_frame_deleted">;
4298
4312
 
4299
4313
  declare function createEventModule<T extends EventDefinition<any, string>>(eventDefinition: T): BuildEventDefinition<T> & T;
4300
4314
 
@@ -4305,6 +4319,14 @@ type _publicOnScheduleTimeFrameUpdatedType = typeof onScheduleTimeFrameUpdated$1
4305
4319
  /** */
4306
4320
  declare const onScheduleTimeFrameUpdated: ReturnType<typeof createEventModule<_publicOnScheduleTimeFrameUpdatedType>>;
4307
4321
 
4322
+ type _publicOnScheduleTimeFrameCreatedType = typeof onScheduleTimeFrameCreated$1;
4323
+ /** */
4324
+ declare const onScheduleTimeFrameCreated: ReturnType<typeof createEventModule<_publicOnScheduleTimeFrameCreatedType>>;
4325
+
4326
+ type _publicOnScheduleTimeFrameDeletedType = typeof onScheduleTimeFrameDeleted$1;
4327
+ /** */
4328
+ declare const onScheduleTimeFrameDeleted: ReturnType<typeof createEventModule<_publicOnScheduleTimeFrameDeletedType>>;
4329
+
4308
4330
  type index_d_ActionEvent = ActionEvent;
4309
4331
  type index_d_Address = Address;
4310
4332
  type index_d_AddressHint = AddressHint;
@@ -4345,6 +4367,8 @@ type index_d_ResolutionMethod = ResolutionMethod;
4345
4367
  declare const index_d_ResolutionMethod: typeof ResolutionMethod;
4346
4368
  type index_d_RestoreInfo = RestoreInfo;
4347
4369
  type index_d_ScheduleTimeFrame = ScheduleTimeFrame;
4370
+ type index_d_ScheduleTimeFrameCreatedEnvelope = ScheduleTimeFrameCreatedEnvelope;
4371
+ type index_d_ScheduleTimeFrameDeletedEnvelope = ScheduleTimeFrameDeletedEnvelope;
4348
4372
  type index_d_ScheduleTimeFrameNonNullableFields = ScheduleTimeFrameNonNullableFields;
4349
4373
  type index_d_ScheduleTimeFrameUpdatedEnvelope = ScheduleTimeFrameUpdatedEnvelope;
4350
4374
  type index_d_ScheduleTimeFrameUpdatedWithMetadata = ScheduleTimeFrameUpdatedWithMetadata;
@@ -4361,12 +4385,16 @@ type index_d_Translation = Translation;
4361
4385
  type index_d_WebhookIdentityType = WebhookIdentityType;
4362
4386
  declare const index_d_WebhookIdentityType: typeof WebhookIdentityType;
4363
4387
  type index_d_ZonedDate = ZonedDate;
4388
+ type index_d__publicOnScheduleTimeFrameCreatedType = _publicOnScheduleTimeFrameCreatedType;
4389
+ type index_d__publicOnScheduleTimeFrameDeletedType = _publicOnScheduleTimeFrameDeletedType;
4364
4390
  type index_d__publicOnScheduleTimeFrameUpdatedType = _publicOnScheduleTimeFrameUpdatedType;
4365
4391
  declare const index_d_getScheduleTimeFrame: typeof getScheduleTimeFrame;
4366
4392
  declare const index_d_listScheduleTimeFrames: typeof listScheduleTimeFrames;
4393
+ declare const index_d_onScheduleTimeFrameCreated: typeof onScheduleTimeFrameCreated;
4394
+ declare const index_d_onScheduleTimeFrameDeleted: typeof onScheduleTimeFrameDeleted;
4367
4395
  declare const index_d_onScheduleTimeFrameUpdated: typeof onScheduleTimeFrameUpdated;
4368
4396
  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 };
4397
+ 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
4398
  }
4371
4399
 
4372
4400
  export { index_d$2 as events, index_d as scheduleTimeFrames, index_d$1 as schedules };