@wix/calendar 1.0.6 → 1.0.7
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.
|
|
3
|
+
"version": "1.0.7",
|
|
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/calendar_events": "1.0.
|
|
21
|
+
"@wix/calendar_events": "1.0.6",
|
|
22
22
|
"@wix/calendar_schedule-time-frames": "1.0.4",
|
|
23
23
|
"@wix/calendar_schedules": "1.0.5"
|
|
24
24
|
},
|
|
@@ -45,5 +45,5 @@
|
|
|
45
45
|
"fqdn": ""
|
|
46
46
|
}
|
|
47
47
|
},
|
|
48
|
-
"falconPackageHash": "
|
|
48
|
+
"falconPackageHash": "9c8a596125f051fb8c57a35921e342b21f38bfdbedbf7b883957eb61"
|
|
49
49
|
}
|
|
@@ -1543,6 +1543,9 @@ interface EventUpdatedEnvelope {
|
|
|
1543
1543
|
entity: Event;
|
|
1544
1544
|
metadata: EventMetadata$2;
|
|
1545
1545
|
}
|
|
1546
|
+
interface EventDeletedEnvelope {
|
|
1547
|
+
metadata: EventMetadata$2;
|
|
1548
|
+
}
|
|
1546
1549
|
interface EventRecurringSplitEnvelope {
|
|
1547
1550
|
data: RecurringEventSplit;
|
|
1548
1551
|
metadata: EventMetadata$2;
|
|
@@ -2121,6 +2124,7 @@ interface ListEventsByMemberIdSignature {
|
|
|
2121
2124
|
}
|
|
2122
2125
|
declare const onEventCreated$1: EventDefinition<EventCreatedEnvelope, "wix.calendar.v3.event_created">;
|
|
2123
2126
|
declare const onEventUpdated$1: EventDefinition<EventUpdatedEnvelope, "wix.calendar.v3.event_updated">;
|
|
2127
|
+
declare const onEventDeleted$1: EventDefinition<EventDeletedEnvelope, "wix.calendar.v3.event_deleted">;
|
|
2124
2128
|
declare const onEventRecurringSplit$1: EventDefinition<EventRecurringSplitEnvelope, "wix.calendar.v3.event_recurring_split">;
|
|
2125
2129
|
declare const onEventCancelled$1: EventDefinition<EventCancelledEnvelope, "wix.calendar.v3.event_cancelled">;
|
|
2126
2130
|
|
|
@@ -2148,6 +2152,10 @@ type _publicOnEventUpdatedType = typeof onEventUpdated$1;
|
|
|
2148
2152
|
/** */
|
|
2149
2153
|
declare const onEventUpdated: ReturnType<typeof createEventModule$2<_publicOnEventUpdatedType>>;
|
|
2150
2154
|
|
|
2155
|
+
type _publicOnEventDeletedType = typeof onEventDeleted$1;
|
|
2156
|
+
/** */
|
|
2157
|
+
declare const onEventDeleted: ReturnType<typeof createEventModule$2<_publicOnEventDeletedType>>;
|
|
2158
|
+
|
|
2151
2159
|
type _publicOnEventRecurringSplitType = typeof onEventRecurringSplit$1;
|
|
2152
2160
|
/** */
|
|
2153
2161
|
declare const onEventRecurringSplit: ReturnType<typeof createEventModule$2<_publicOnEventRecurringSplitType>>;
|
|
@@ -2191,6 +2199,7 @@ type context$2_Event = Event;
|
|
|
2191
2199
|
type context$2_EventCancelled = EventCancelled;
|
|
2192
2200
|
type context$2_EventCancelledEnvelope = EventCancelledEnvelope;
|
|
2193
2201
|
type context$2_EventCreatedEnvelope = EventCreatedEnvelope;
|
|
2202
|
+
type context$2_EventDeletedEnvelope = EventDeletedEnvelope;
|
|
2194
2203
|
type context$2_EventNonNullableFields = EventNonNullableFields;
|
|
2195
2204
|
type context$2_EventRecurringSplitEnvelope = EventRecurringSplitEnvelope;
|
|
2196
2205
|
type context$2_EventUpdatedEnvelope = EventUpdatedEnvelope;
|
|
@@ -2256,6 +2265,7 @@ type context$2_UpdateEventResponse = UpdateEventResponse;
|
|
|
2256
2265
|
type context$2_UpdateEventResponseNonNullableFields = UpdateEventResponseNonNullableFields;
|
|
2257
2266
|
type context$2__publicOnEventCancelledType = _publicOnEventCancelledType;
|
|
2258
2267
|
type context$2__publicOnEventCreatedType = _publicOnEventCreatedType;
|
|
2268
|
+
type context$2__publicOnEventDeletedType = _publicOnEventDeletedType;
|
|
2259
2269
|
type context$2__publicOnEventRecurringSplitType = _publicOnEventRecurringSplitType;
|
|
2260
2270
|
type context$2__publicOnEventUpdatedType = _publicOnEventUpdatedType;
|
|
2261
2271
|
declare const context$2_bulkCancelEvent: typeof bulkCancelEvent;
|
|
@@ -2269,6 +2279,7 @@ declare const context$2_listEventsByContactId: typeof listEventsByContactId;
|
|
|
2269
2279
|
declare const context$2_listEventsByMemberId: typeof listEventsByMemberId;
|
|
2270
2280
|
declare const context$2_onEventCancelled: typeof onEventCancelled;
|
|
2271
2281
|
declare const context$2_onEventCreated: typeof onEventCreated;
|
|
2282
|
+
declare const context$2_onEventDeleted: typeof onEventDeleted;
|
|
2272
2283
|
declare const context$2_onEventRecurringSplit: typeof onEventRecurringSplit;
|
|
2273
2284
|
declare const context$2_onEventUpdated: typeof onEventUpdated;
|
|
2274
2285
|
declare const context$2_queryEvents: typeof queryEvents;
|
|
@@ -2276,7 +2287,7 @@ declare const context$2_restoreEventDefaults: typeof restoreEventDefaults;
|
|
|
2276
2287
|
declare const context$2_splitRecurringEvent: typeof splitRecurringEvent;
|
|
2277
2288
|
declare const context$2_updateEvent: typeof updateEvent;
|
|
2278
2289
|
declare namespace context$2 {
|
|
2279
|
-
export { type ActionEvent$2 as ActionEvent, type Address$2 as Address, type AddressHint$2 as AddressHint, type context$2_ApplicationError as ApplicationError, type BaseEventMetadata$2 as BaseEventMetadata, type context$2_BulkActionMetadata as BulkActionMetadata, type context$2_BulkCancelEventOptions as BulkCancelEventOptions, type context$2_BulkCancelEventRequest as BulkCancelEventRequest, type context$2_BulkCancelEventResponse as BulkCancelEventResponse, type context$2_BulkCancelEventResponseNonNullableFields as BulkCancelEventResponseNonNullableFields, type context$2_BulkCreateEventOptions as BulkCreateEventOptions, type context$2_BulkCreateEventRequest as BulkCreateEventRequest, type context$2_BulkCreateEventResponse as BulkCreateEventResponse, type context$2_BulkCreateEventResponseNonNullableFields as BulkCreateEventResponseNonNullableFields, type context$2_BulkEventResult as BulkEventResult, type context$2_BulkUpdateEventOptions as BulkUpdateEventOptions, type context$2_BulkUpdateEventRequest as BulkUpdateEventRequest, type context$2_BulkUpdateEventRequestMaskedEvent as BulkUpdateEventRequestMaskedEvent, type context$2_BulkUpdateEventResponse as BulkUpdateEventResponse, type context$2_BulkUpdateEventResponseNonNullableFields as BulkUpdateEventResponseNonNullableFields, type BusinessSchedule$2 as BusinessSchedule, type context$2_CancelEventOptions as CancelEventOptions, type context$2_CancelEventRequest as CancelEventRequest, type context$2_CancelEventResponse as CancelEventResponse, type context$2_CancelEventResponseNonNullableFields as CancelEventResponseNonNullableFields, type Categories$2 as Categories, type ChangeContext$2 as ChangeContext, type ChangeContextPayloadOneOf$2 as ChangeContextPayloadOneOf, type context$2_CommonCursorPaging as CommonCursorPaging, type context$2_CommonCursorPagingMetadata as CommonCursorPagingMetadata, type context$2_CommonCursors as CommonCursors, type CommonIdentificationData$1 as CommonIdentificationData, type CommonIdentificationDataIdOneOf$1 as CommonIdentificationDataIdOneOf, type ConferencingDetails$1 as ConferencingDetails, type ConsentPolicy$2 as ConsentPolicy, type context$2_CreateEventOptions as CreateEventOptions, type context$2_CreateEventRequest as CreateEventRequest, type context$2_CreateEventResponse as CreateEventResponse, type context$2_CreateEventResponseNonNullableFields as CreateEventResponseNonNullableFields, type CursorPaging$1 as CursorPaging, type CursorPagingMetadata$1 as CursorPagingMetadata, type CursorQuery$1 as CursorQuery, type CursorQueryPagingMethodOneOf$1 as CursorQueryPagingMethodOneOf, type Cursors$1 as Cursors, context$2_Day as Day, DayOfWeek$2 as DayOfWeek, type context$2_DeleteTargetsRequest as DeleteTargetsRequest, type context$2_DeleteTargetsResponse as DeleteTargetsResponse, type DomainEvent$2 as DomainEvent, type DomainEventBodyOneOf$2 as DomainEventBodyOneOf, type Empty$2 as Empty, type EntityCreatedEvent$2 as EntityCreatedEvent, type EntityDeletedEvent$2 as EntityDeletedEvent, type EntityUpdatedEvent$2 as EntityUpdatedEvent, type context$2_Event as Event, type context$2_EventCancelled as EventCancelled, type context$2_EventCancelledEnvelope as EventCancelledEnvelope, type context$2_EventCreatedEnvelope as EventCreatedEnvelope, type EventMetadata$2 as EventMetadata, type context$2_EventNonNullableFields as EventNonNullableFields, type context$2_EventRecurringSplitEnvelope as EventRecurringSplitEnvelope, type context$2_EventUpdatedEnvelope as EventUpdatedEnvelope, type context$2_EventUpdatedWithMetadata as EventUpdatedWithMetadata, type context$2_EventsQueryBuilder as EventsQueryBuilder, type context$2_EventsQueryResult as EventsQueryResult, type ExtendedFields$1 as ExtendedFields, context$2_Field as Field, context$2_Frequency as Frequency, type GeoCoordinates$2 as GeoCoordinates, type context$2_GetEventOptions as GetEventOptions, type context$2_GetEventRequest as GetEventRequest, type context$2_GetEventResponse as GetEventResponse, type context$2_GetEventResponseNonNullableFields as GetEventResponseNonNullableFields, type IdentificationData$2 as IdentificationData, type IdentificationDataIdOneOf$2 as IdentificationDataIdOneOf, IdentityType$1 as IdentityType, type context$2_ItemMetadata as ItemMetadata, type context$2_ListEventsByContactIdOptions as ListEventsByContactIdOptions, type context$2_ListEventsByContactIdRequest as ListEventsByContactIdRequest, type context$2_ListEventsByContactIdResponse as ListEventsByContactIdResponse, type context$2_ListEventsByContactIdResponseNonNullableFields as ListEventsByContactIdResponseNonNullableFields, type context$2_ListEventsByMemberIdOptions as ListEventsByMemberIdOptions, type context$2_ListEventsByMemberIdRequest as ListEventsByMemberIdRequest, type context$2_ListEventsByMemberIdResponse as ListEventsByMemberIdResponse, type context$2_ListEventsByMemberIdResponseNonNullableFields as ListEventsByMemberIdResponseNonNullableFields, type context$2_ListEventsOptions as ListEventsOptions, type context$2_ListEventsRequest as ListEventsRequest, type context$2_ListEventsResponse as ListEventsResponse, type context$2_ListEventsResponseNonNullableFields as ListEventsResponseNonNullableFields, type context$2_ListRecurringEventInstancesHistoryRequest as ListRecurringEventInstancesHistoryRequest, type context$2_ListRecurringEventInstancesHistoryResponse as ListRecurringEventInstancesHistoryResponse, type Locale$2 as Locale, type Location$1 as Location, LocationType$1 as LocationType, type context$2_MaskedEvent as MaskedEvent, type MessageEnvelope$2 as MessageEnvelope, type Multilingual$2 as Multilingual, type context$2_Participant as Participant, type ParticipantNotification$1 as ParticipantNotification, type context$2_Participants as Participants, context$2_ParticipantsStatus as ParticipantsStatus, type Permission$1 as Permission, PlacementType$2 as PlacementType, type Properties$2 as Properties, type PropertiesChange$2 as PropertiesChange, type context$2_QueryEventsOptions as QueryEventsOptions, type context$2_QueryEventsRequest as QueryEventsRequest, type context$2_QueryEventsResponse as QueryEventsResponse, type context$2_QueryEventsResponseNonNullableFields as QueryEventsResponseNonNullableFields, type context$2_RecurrenceRule as RecurrenceRule, context$2_RecurrenceType as RecurrenceType, type context$2_RecurringEventSplit as RecurringEventSplit, RequestedFields$1 as RequestedFields, ResolutionMethod$2 as ResolutionMethod, type context$2_Resource as Resource, type context$2_RestoreEventDefaultsOptions as RestoreEventDefaultsOptions, type context$2_RestoreEventDefaultsRequest as RestoreEventDefaultsRequest, type context$2_RestoreEventDefaultsResponse as RestoreEventDefaultsResponse, type context$2_RestoreEventDefaultsResponseNonNullableFields as RestoreEventDefaultsResponseNonNullableFields, type RestoreInfo$2 as RestoreInfo, Role$1 as Role, type SiteCloned$2 as SiteCloned, type SiteCreated$2 as SiteCreated, type SitePropertiesEvent$2 as SitePropertiesEvent, type SitePropertiesNotification$2 as SitePropertiesNotification, context$2_SortOrder as SortOrder, type context$2_Sorting as Sorting, type SpecialHourPeriod$2 as SpecialHourPeriod, type context$2_SplitRecurringEventOptions as SplitRecurringEventOptions, type context$2_SplitRecurringEventRequest as SplitRecurringEventRequest, type context$2_SplitRecurringEventResponse as SplitRecurringEventResponse, type context$2_SplitRecurringEventResponseNonNullableFields as SplitRecurringEventResponseNonNullableFields, Status$2 as Status, type SupportedLanguage$2 as SupportedLanguage, type TimePeriod$2 as TimePeriod, type Translation$2 as Translation, context$2_Transparency as Transparency, Type$1 as Type, type context$2_UpdateEvent as UpdateEvent, type context$2_UpdateEventOptions as UpdateEventOptions, type context$2_UpdateEventParticipantsRequest as UpdateEventParticipantsRequest, type context$2_UpdateEventParticipantsResponse as UpdateEventParticipantsResponse, type context$2_UpdateEventRequest as UpdateEventRequest, type context$2_UpdateEventResponse as UpdateEventResponse, type context$2_UpdateEventResponseNonNullableFields as UpdateEventResponseNonNullableFields, WebhookIdentityType$2 as WebhookIdentityType, type ZonedDate$1 as ZonedDate, type context$2__publicOnEventCancelledType as _publicOnEventCancelledType, type context$2__publicOnEventCreatedType as _publicOnEventCreatedType, type context$2__publicOnEventRecurringSplitType as _publicOnEventRecurringSplitType, type context$2__publicOnEventUpdatedType as _publicOnEventUpdatedType, context$2_bulkCancelEvent as bulkCancelEvent, context$2_bulkCreateEvent as bulkCreateEvent, context$2_bulkUpdateEvent as bulkUpdateEvent, context$2_cancelEvent as cancelEvent, context$2_createEvent as createEvent, context$2_getEvent as getEvent, context$2_listEvents as listEvents, context$2_listEventsByContactId as listEventsByContactId, context$2_listEventsByMemberId as listEventsByMemberId, context$2_onEventCancelled as onEventCancelled, context$2_onEventCreated as onEventCreated, context$2_onEventRecurringSplit as onEventRecurringSplit, context$2_onEventUpdated as onEventUpdated, onEventCancelled$1 as publicOnEventCancelled, onEventCreated$1 as publicOnEventCreated, onEventRecurringSplit$1 as publicOnEventRecurringSplit, onEventUpdated$1 as publicOnEventUpdated, context$2_queryEvents as queryEvents, context$2_restoreEventDefaults as restoreEventDefaults, context$2_splitRecurringEvent as splitRecurringEvent, context$2_updateEvent as updateEvent };
|
|
2290
|
+
export { type ActionEvent$2 as ActionEvent, type Address$2 as Address, type AddressHint$2 as AddressHint, type context$2_ApplicationError as ApplicationError, type BaseEventMetadata$2 as BaseEventMetadata, type context$2_BulkActionMetadata as BulkActionMetadata, type context$2_BulkCancelEventOptions as BulkCancelEventOptions, type context$2_BulkCancelEventRequest as BulkCancelEventRequest, type context$2_BulkCancelEventResponse as BulkCancelEventResponse, type context$2_BulkCancelEventResponseNonNullableFields as BulkCancelEventResponseNonNullableFields, type context$2_BulkCreateEventOptions as BulkCreateEventOptions, type context$2_BulkCreateEventRequest as BulkCreateEventRequest, type context$2_BulkCreateEventResponse as BulkCreateEventResponse, type context$2_BulkCreateEventResponseNonNullableFields as BulkCreateEventResponseNonNullableFields, type context$2_BulkEventResult as BulkEventResult, type context$2_BulkUpdateEventOptions as BulkUpdateEventOptions, type context$2_BulkUpdateEventRequest as BulkUpdateEventRequest, type context$2_BulkUpdateEventRequestMaskedEvent as BulkUpdateEventRequestMaskedEvent, type context$2_BulkUpdateEventResponse as BulkUpdateEventResponse, type context$2_BulkUpdateEventResponseNonNullableFields as BulkUpdateEventResponseNonNullableFields, type BusinessSchedule$2 as BusinessSchedule, type context$2_CancelEventOptions as CancelEventOptions, type context$2_CancelEventRequest as CancelEventRequest, type context$2_CancelEventResponse as CancelEventResponse, type context$2_CancelEventResponseNonNullableFields as CancelEventResponseNonNullableFields, type Categories$2 as Categories, type ChangeContext$2 as ChangeContext, type ChangeContextPayloadOneOf$2 as ChangeContextPayloadOneOf, type context$2_CommonCursorPaging as CommonCursorPaging, type context$2_CommonCursorPagingMetadata as CommonCursorPagingMetadata, type context$2_CommonCursors as CommonCursors, type CommonIdentificationData$1 as CommonIdentificationData, type CommonIdentificationDataIdOneOf$1 as CommonIdentificationDataIdOneOf, type ConferencingDetails$1 as ConferencingDetails, type ConsentPolicy$2 as ConsentPolicy, type context$2_CreateEventOptions as CreateEventOptions, type context$2_CreateEventRequest as CreateEventRequest, type context$2_CreateEventResponse as CreateEventResponse, type context$2_CreateEventResponseNonNullableFields as CreateEventResponseNonNullableFields, type CursorPaging$1 as CursorPaging, type CursorPagingMetadata$1 as CursorPagingMetadata, type CursorQuery$1 as CursorQuery, type CursorQueryPagingMethodOneOf$1 as CursorQueryPagingMethodOneOf, type Cursors$1 as Cursors, context$2_Day as Day, DayOfWeek$2 as DayOfWeek, type context$2_DeleteTargetsRequest as DeleteTargetsRequest, type context$2_DeleteTargetsResponse as DeleteTargetsResponse, type DomainEvent$2 as DomainEvent, type DomainEventBodyOneOf$2 as DomainEventBodyOneOf, type Empty$2 as Empty, type EntityCreatedEvent$2 as EntityCreatedEvent, type EntityDeletedEvent$2 as EntityDeletedEvent, type EntityUpdatedEvent$2 as EntityUpdatedEvent, type context$2_Event as Event, type context$2_EventCancelled as EventCancelled, type context$2_EventCancelledEnvelope as EventCancelledEnvelope, type context$2_EventCreatedEnvelope as EventCreatedEnvelope, type context$2_EventDeletedEnvelope as EventDeletedEnvelope, type EventMetadata$2 as EventMetadata, type context$2_EventNonNullableFields as EventNonNullableFields, type context$2_EventRecurringSplitEnvelope as EventRecurringSplitEnvelope, type context$2_EventUpdatedEnvelope as EventUpdatedEnvelope, type context$2_EventUpdatedWithMetadata as EventUpdatedWithMetadata, type context$2_EventsQueryBuilder as EventsQueryBuilder, type context$2_EventsQueryResult as EventsQueryResult, type ExtendedFields$1 as ExtendedFields, context$2_Field as Field, context$2_Frequency as Frequency, type GeoCoordinates$2 as GeoCoordinates, type context$2_GetEventOptions as GetEventOptions, type context$2_GetEventRequest as GetEventRequest, type context$2_GetEventResponse as GetEventResponse, type context$2_GetEventResponseNonNullableFields as GetEventResponseNonNullableFields, type IdentificationData$2 as IdentificationData, type IdentificationDataIdOneOf$2 as IdentificationDataIdOneOf, IdentityType$1 as IdentityType, type context$2_ItemMetadata as ItemMetadata, type context$2_ListEventsByContactIdOptions as ListEventsByContactIdOptions, type context$2_ListEventsByContactIdRequest as ListEventsByContactIdRequest, type context$2_ListEventsByContactIdResponse as ListEventsByContactIdResponse, type context$2_ListEventsByContactIdResponseNonNullableFields as ListEventsByContactIdResponseNonNullableFields, type context$2_ListEventsByMemberIdOptions as ListEventsByMemberIdOptions, type context$2_ListEventsByMemberIdRequest as ListEventsByMemberIdRequest, type context$2_ListEventsByMemberIdResponse as ListEventsByMemberIdResponse, type context$2_ListEventsByMemberIdResponseNonNullableFields as ListEventsByMemberIdResponseNonNullableFields, type context$2_ListEventsOptions as ListEventsOptions, type context$2_ListEventsRequest as ListEventsRequest, type context$2_ListEventsResponse as ListEventsResponse, type context$2_ListEventsResponseNonNullableFields as ListEventsResponseNonNullableFields, type context$2_ListRecurringEventInstancesHistoryRequest as ListRecurringEventInstancesHistoryRequest, type context$2_ListRecurringEventInstancesHistoryResponse as ListRecurringEventInstancesHistoryResponse, type Locale$2 as Locale, type Location$1 as Location, LocationType$1 as LocationType, type context$2_MaskedEvent as MaskedEvent, type MessageEnvelope$2 as MessageEnvelope, type Multilingual$2 as Multilingual, type context$2_Participant as Participant, type ParticipantNotification$1 as ParticipantNotification, type context$2_Participants as Participants, context$2_ParticipantsStatus as ParticipantsStatus, type Permission$1 as Permission, PlacementType$2 as PlacementType, type Properties$2 as Properties, type PropertiesChange$2 as PropertiesChange, type context$2_QueryEventsOptions as QueryEventsOptions, type context$2_QueryEventsRequest as QueryEventsRequest, type context$2_QueryEventsResponse as QueryEventsResponse, type context$2_QueryEventsResponseNonNullableFields as QueryEventsResponseNonNullableFields, type context$2_RecurrenceRule as RecurrenceRule, context$2_RecurrenceType as RecurrenceType, type context$2_RecurringEventSplit as RecurringEventSplit, RequestedFields$1 as RequestedFields, ResolutionMethod$2 as ResolutionMethod, type context$2_Resource as Resource, type context$2_RestoreEventDefaultsOptions as RestoreEventDefaultsOptions, type context$2_RestoreEventDefaultsRequest as RestoreEventDefaultsRequest, type context$2_RestoreEventDefaultsResponse as RestoreEventDefaultsResponse, type context$2_RestoreEventDefaultsResponseNonNullableFields as RestoreEventDefaultsResponseNonNullableFields, type RestoreInfo$2 as RestoreInfo, Role$1 as Role, type SiteCloned$2 as SiteCloned, type SiteCreated$2 as SiteCreated, type SitePropertiesEvent$2 as SitePropertiesEvent, type SitePropertiesNotification$2 as SitePropertiesNotification, context$2_SortOrder as SortOrder, type context$2_Sorting as Sorting, type SpecialHourPeriod$2 as SpecialHourPeriod, type context$2_SplitRecurringEventOptions as SplitRecurringEventOptions, type context$2_SplitRecurringEventRequest as SplitRecurringEventRequest, type context$2_SplitRecurringEventResponse as SplitRecurringEventResponse, type context$2_SplitRecurringEventResponseNonNullableFields as SplitRecurringEventResponseNonNullableFields, Status$2 as Status, type SupportedLanguage$2 as SupportedLanguage, type TimePeriod$2 as TimePeriod, type Translation$2 as Translation, context$2_Transparency as Transparency, Type$1 as Type, type context$2_UpdateEvent as UpdateEvent, type context$2_UpdateEventOptions as UpdateEventOptions, type context$2_UpdateEventParticipantsRequest as UpdateEventParticipantsRequest, type context$2_UpdateEventParticipantsResponse as UpdateEventParticipantsResponse, type context$2_UpdateEventRequest as UpdateEventRequest, type context$2_UpdateEventResponse as UpdateEventResponse, type context$2_UpdateEventResponseNonNullableFields as UpdateEventResponseNonNullableFields, WebhookIdentityType$2 as WebhookIdentityType, type ZonedDate$1 as ZonedDate, type context$2__publicOnEventCancelledType as _publicOnEventCancelledType, type context$2__publicOnEventCreatedType as _publicOnEventCreatedType, type context$2__publicOnEventDeletedType as _publicOnEventDeletedType, type context$2__publicOnEventRecurringSplitType as _publicOnEventRecurringSplitType, type context$2__publicOnEventUpdatedType as _publicOnEventUpdatedType, context$2_bulkCancelEvent as bulkCancelEvent, context$2_bulkCreateEvent as bulkCreateEvent, context$2_bulkUpdateEvent as bulkUpdateEvent, context$2_cancelEvent as cancelEvent, context$2_createEvent as createEvent, context$2_getEvent as getEvent, context$2_listEvents as listEvents, context$2_listEventsByContactId as listEventsByContactId, context$2_listEventsByMemberId as listEventsByMemberId, context$2_onEventCancelled as onEventCancelled, context$2_onEventCreated as onEventCreated, context$2_onEventDeleted as onEventDeleted, context$2_onEventRecurringSplit as onEventRecurringSplit, context$2_onEventUpdated as onEventUpdated, onEventCancelled$1 as publicOnEventCancelled, onEventCreated$1 as publicOnEventCreated, onEventDeleted$1 as publicOnEventDeleted, onEventRecurringSplit$1 as publicOnEventRecurringSplit, onEventUpdated$1 as publicOnEventUpdated, context$2_queryEvents as queryEvents, context$2_restoreEventDefaults as restoreEventDefaults, context$2_splitRecurringEvent as splitRecurringEvent, context$2_updateEvent as updateEvent };
|
|
2280
2291
|
}
|
|
2281
2292
|
|
|
2282
2293
|
interface Schedule {
|
|
@@ -1543,6 +1543,9 @@ interface EventUpdatedEnvelope {
|
|
|
1543
1543
|
entity: Event;
|
|
1544
1544
|
metadata: EventMetadata$2;
|
|
1545
1545
|
}
|
|
1546
|
+
interface EventDeletedEnvelope {
|
|
1547
|
+
metadata: EventMetadata$2;
|
|
1548
|
+
}
|
|
1546
1549
|
interface EventRecurringSplitEnvelope {
|
|
1547
1550
|
data: RecurringEventSplit;
|
|
1548
1551
|
metadata: EventMetadata$2;
|
|
@@ -2121,6 +2124,7 @@ interface ListEventsByMemberIdSignature {
|
|
|
2121
2124
|
}
|
|
2122
2125
|
declare const onEventCreated$1: EventDefinition<EventCreatedEnvelope, "wix.calendar.v3.event_created">;
|
|
2123
2126
|
declare const onEventUpdated$1: EventDefinition<EventUpdatedEnvelope, "wix.calendar.v3.event_updated">;
|
|
2127
|
+
declare const onEventDeleted$1: EventDefinition<EventDeletedEnvelope, "wix.calendar.v3.event_deleted">;
|
|
2124
2128
|
declare const onEventRecurringSplit$1: EventDefinition<EventRecurringSplitEnvelope, "wix.calendar.v3.event_recurring_split">;
|
|
2125
2129
|
declare const onEventCancelled$1: EventDefinition<EventCancelledEnvelope, "wix.calendar.v3.event_cancelled">;
|
|
2126
2130
|
|
|
@@ -2148,6 +2152,10 @@ type _publicOnEventUpdatedType = typeof onEventUpdated$1;
|
|
|
2148
2152
|
/** */
|
|
2149
2153
|
declare const onEventUpdated: ReturnType<typeof createEventModule$2<_publicOnEventUpdatedType>>;
|
|
2150
2154
|
|
|
2155
|
+
type _publicOnEventDeletedType = typeof onEventDeleted$1;
|
|
2156
|
+
/** */
|
|
2157
|
+
declare const onEventDeleted: ReturnType<typeof createEventModule$2<_publicOnEventDeletedType>>;
|
|
2158
|
+
|
|
2151
2159
|
type _publicOnEventRecurringSplitType = typeof onEventRecurringSplit$1;
|
|
2152
2160
|
/** */
|
|
2153
2161
|
declare const onEventRecurringSplit: ReturnType<typeof createEventModule$2<_publicOnEventRecurringSplitType>>;
|
|
@@ -2191,6 +2199,7 @@ type index_d$2_Event = Event;
|
|
|
2191
2199
|
type index_d$2_EventCancelled = EventCancelled;
|
|
2192
2200
|
type index_d$2_EventCancelledEnvelope = EventCancelledEnvelope;
|
|
2193
2201
|
type index_d$2_EventCreatedEnvelope = EventCreatedEnvelope;
|
|
2202
|
+
type index_d$2_EventDeletedEnvelope = EventDeletedEnvelope;
|
|
2194
2203
|
type index_d$2_EventNonNullableFields = EventNonNullableFields;
|
|
2195
2204
|
type index_d$2_EventRecurringSplitEnvelope = EventRecurringSplitEnvelope;
|
|
2196
2205
|
type index_d$2_EventUpdatedEnvelope = EventUpdatedEnvelope;
|
|
@@ -2256,6 +2265,7 @@ type index_d$2_UpdateEventResponse = UpdateEventResponse;
|
|
|
2256
2265
|
type index_d$2_UpdateEventResponseNonNullableFields = UpdateEventResponseNonNullableFields;
|
|
2257
2266
|
type index_d$2__publicOnEventCancelledType = _publicOnEventCancelledType;
|
|
2258
2267
|
type index_d$2__publicOnEventCreatedType = _publicOnEventCreatedType;
|
|
2268
|
+
type index_d$2__publicOnEventDeletedType = _publicOnEventDeletedType;
|
|
2259
2269
|
type index_d$2__publicOnEventRecurringSplitType = _publicOnEventRecurringSplitType;
|
|
2260
2270
|
type index_d$2__publicOnEventUpdatedType = _publicOnEventUpdatedType;
|
|
2261
2271
|
declare const index_d$2_bulkCancelEvent: typeof bulkCancelEvent;
|
|
@@ -2269,6 +2279,7 @@ declare const index_d$2_listEventsByContactId: typeof listEventsByContactId;
|
|
|
2269
2279
|
declare const index_d$2_listEventsByMemberId: typeof listEventsByMemberId;
|
|
2270
2280
|
declare const index_d$2_onEventCancelled: typeof onEventCancelled;
|
|
2271
2281
|
declare const index_d$2_onEventCreated: typeof onEventCreated;
|
|
2282
|
+
declare const index_d$2_onEventDeleted: typeof onEventDeleted;
|
|
2272
2283
|
declare const index_d$2_onEventRecurringSplit: typeof onEventRecurringSplit;
|
|
2273
2284
|
declare const index_d$2_onEventUpdated: typeof onEventUpdated;
|
|
2274
2285
|
declare const index_d$2_queryEvents: typeof queryEvents;
|
|
@@ -2276,7 +2287,7 @@ declare const index_d$2_restoreEventDefaults: typeof restoreEventDefaults;
|
|
|
2276
2287
|
declare const index_d$2_splitRecurringEvent: typeof splitRecurringEvent;
|
|
2277
2288
|
declare const index_d$2_updateEvent: typeof updateEvent;
|
|
2278
2289
|
declare namespace index_d$2 {
|
|
2279
|
-
export { type ActionEvent$2 as ActionEvent, type Address$2 as Address, type AddressHint$2 as AddressHint, type index_d$2_ApplicationError as ApplicationError, type BaseEventMetadata$2 as BaseEventMetadata, type index_d$2_BulkActionMetadata as BulkActionMetadata, type index_d$2_BulkCancelEventOptions as BulkCancelEventOptions, type index_d$2_BulkCancelEventRequest as BulkCancelEventRequest, type index_d$2_BulkCancelEventResponse as BulkCancelEventResponse, type index_d$2_BulkCancelEventResponseNonNullableFields as BulkCancelEventResponseNonNullableFields, type index_d$2_BulkCreateEventOptions as BulkCreateEventOptions, type index_d$2_BulkCreateEventRequest as BulkCreateEventRequest, type index_d$2_BulkCreateEventResponse as BulkCreateEventResponse, type index_d$2_BulkCreateEventResponseNonNullableFields as BulkCreateEventResponseNonNullableFields, type index_d$2_BulkEventResult as BulkEventResult, type index_d$2_BulkUpdateEventOptions as BulkUpdateEventOptions, type index_d$2_BulkUpdateEventRequest as BulkUpdateEventRequest, type index_d$2_BulkUpdateEventRequestMaskedEvent as BulkUpdateEventRequestMaskedEvent, type index_d$2_BulkUpdateEventResponse as BulkUpdateEventResponse, type index_d$2_BulkUpdateEventResponseNonNullableFields as BulkUpdateEventResponseNonNullableFields, type BusinessSchedule$2 as BusinessSchedule, type index_d$2_CancelEventOptions as CancelEventOptions, type index_d$2_CancelEventRequest as CancelEventRequest, type index_d$2_CancelEventResponse as CancelEventResponse, type index_d$2_CancelEventResponseNonNullableFields as CancelEventResponseNonNullableFields, type Categories$2 as Categories, type ChangeContext$2 as ChangeContext, type ChangeContextPayloadOneOf$2 as ChangeContextPayloadOneOf, type index_d$2_CommonCursorPaging as CommonCursorPaging, type index_d$2_CommonCursorPagingMetadata as CommonCursorPagingMetadata, type index_d$2_CommonCursors as CommonCursors, type CommonIdentificationData$1 as CommonIdentificationData, type CommonIdentificationDataIdOneOf$1 as CommonIdentificationDataIdOneOf, type ConferencingDetails$1 as ConferencingDetails, type ConsentPolicy$2 as ConsentPolicy, type index_d$2_CreateEventOptions as CreateEventOptions, type index_d$2_CreateEventRequest as CreateEventRequest, type index_d$2_CreateEventResponse as CreateEventResponse, type index_d$2_CreateEventResponseNonNullableFields as CreateEventResponseNonNullableFields, type CursorPaging$1 as CursorPaging, type CursorPagingMetadata$1 as CursorPagingMetadata, type CursorQuery$1 as CursorQuery, type CursorQueryPagingMethodOneOf$1 as CursorQueryPagingMethodOneOf, type Cursors$1 as Cursors, index_d$2_Day as Day, DayOfWeek$2 as DayOfWeek, type index_d$2_DeleteTargetsRequest as DeleteTargetsRequest, type index_d$2_DeleteTargetsResponse as DeleteTargetsResponse, type DomainEvent$2 as DomainEvent, type DomainEventBodyOneOf$2 as DomainEventBodyOneOf, type Empty$2 as Empty, type EntityCreatedEvent$2 as EntityCreatedEvent, type EntityDeletedEvent$2 as EntityDeletedEvent, type EntityUpdatedEvent$2 as EntityUpdatedEvent, type index_d$2_Event as Event, type index_d$2_EventCancelled as EventCancelled, type index_d$2_EventCancelledEnvelope as EventCancelledEnvelope, type index_d$2_EventCreatedEnvelope as EventCreatedEnvelope, type EventMetadata$2 as EventMetadata, type index_d$2_EventNonNullableFields as EventNonNullableFields, type index_d$2_EventRecurringSplitEnvelope as EventRecurringSplitEnvelope, type index_d$2_EventUpdatedEnvelope as EventUpdatedEnvelope, type index_d$2_EventUpdatedWithMetadata as EventUpdatedWithMetadata, type index_d$2_EventsQueryBuilder as EventsQueryBuilder, type index_d$2_EventsQueryResult as EventsQueryResult, type ExtendedFields$1 as ExtendedFields, index_d$2_Field as Field, index_d$2_Frequency as Frequency, type GeoCoordinates$2 as GeoCoordinates, type index_d$2_GetEventOptions as GetEventOptions, type index_d$2_GetEventRequest as GetEventRequest, type index_d$2_GetEventResponse as GetEventResponse, type index_d$2_GetEventResponseNonNullableFields as GetEventResponseNonNullableFields, type IdentificationData$2 as IdentificationData, type IdentificationDataIdOneOf$2 as IdentificationDataIdOneOf, IdentityType$1 as IdentityType, type index_d$2_ItemMetadata as ItemMetadata, type index_d$2_ListEventsByContactIdOptions as ListEventsByContactIdOptions, type index_d$2_ListEventsByContactIdRequest as ListEventsByContactIdRequest, type index_d$2_ListEventsByContactIdResponse as ListEventsByContactIdResponse, type index_d$2_ListEventsByContactIdResponseNonNullableFields as ListEventsByContactIdResponseNonNullableFields, type index_d$2_ListEventsByMemberIdOptions as ListEventsByMemberIdOptions, type index_d$2_ListEventsByMemberIdRequest as ListEventsByMemberIdRequest, type index_d$2_ListEventsByMemberIdResponse as ListEventsByMemberIdResponse, type index_d$2_ListEventsByMemberIdResponseNonNullableFields as ListEventsByMemberIdResponseNonNullableFields, type index_d$2_ListEventsOptions as ListEventsOptions, type index_d$2_ListEventsRequest as ListEventsRequest, type index_d$2_ListEventsResponse as ListEventsResponse, type index_d$2_ListEventsResponseNonNullableFields as ListEventsResponseNonNullableFields, type index_d$2_ListRecurringEventInstancesHistoryRequest as ListRecurringEventInstancesHistoryRequest, type index_d$2_ListRecurringEventInstancesHistoryResponse as ListRecurringEventInstancesHistoryResponse, type Locale$2 as Locale, type Location$1 as Location, LocationType$1 as LocationType, type index_d$2_MaskedEvent as MaskedEvent, type MessageEnvelope$2 as MessageEnvelope, type Multilingual$2 as Multilingual, type index_d$2_Participant as Participant, type ParticipantNotification$1 as ParticipantNotification, type index_d$2_Participants as Participants, index_d$2_ParticipantsStatus as ParticipantsStatus, type Permission$1 as Permission, PlacementType$2 as PlacementType, type Properties$2 as Properties, type PropertiesChange$2 as PropertiesChange, type index_d$2_QueryEventsOptions as QueryEventsOptions, type index_d$2_QueryEventsRequest as QueryEventsRequest, type index_d$2_QueryEventsResponse as QueryEventsResponse, type index_d$2_QueryEventsResponseNonNullableFields as QueryEventsResponseNonNullableFields, type index_d$2_RecurrenceRule as RecurrenceRule, index_d$2_RecurrenceType as RecurrenceType, type index_d$2_RecurringEventSplit as RecurringEventSplit, RequestedFields$1 as RequestedFields, ResolutionMethod$2 as ResolutionMethod, type index_d$2_Resource as Resource, type index_d$2_RestoreEventDefaultsOptions as RestoreEventDefaultsOptions, type index_d$2_RestoreEventDefaultsRequest as RestoreEventDefaultsRequest, type index_d$2_RestoreEventDefaultsResponse as RestoreEventDefaultsResponse, type index_d$2_RestoreEventDefaultsResponseNonNullableFields as RestoreEventDefaultsResponseNonNullableFields, type RestoreInfo$2 as RestoreInfo, Role$1 as Role, type SiteCloned$2 as SiteCloned, type SiteCreated$2 as SiteCreated, type SitePropertiesEvent$2 as SitePropertiesEvent, type SitePropertiesNotification$2 as SitePropertiesNotification, index_d$2_SortOrder as SortOrder, type index_d$2_Sorting as Sorting, type SpecialHourPeriod$2 as SpecialHourPeriod, type index_d$2_SplitRecurringEventOptions as SplitRecurringEventOptions, type index_d$2_SplitRecurringEventRequest as SplitRecurringEventRequest, type index_d$2_SplitRecurringEventResponse as SplitRecurringEventResponse, type index_d$2_SplitRecurringEventResponseNonNullableFields as SplitRecurringEventResponseNonNullableFields, Status$2 as Status, type SupportedLanguage$2 as SupportedLanguage, type TimePeriod$2 as TimePeriod, type Translation$2 as Translation, index_d$2_Transparency as Transparency, Type$1 as Type, type index_d$2_UpdateEvent as UpdateEvent, type index_d$2_UpdateEventOptions as UpdateEventOptions, type index_d$2_UpdateEventParticipantsRequest as UpdateEventParticipantsRequest, type index_d$2_UpdateEventParticipantsResponse as UpdateEventParticipantsResponse, type index_d$2_UpdateEventRequest as UpdateEventRequest, type index_d$2_UpdateEventResponse as UpdateEventResponse, type index_d$2_UpdateEventResponseNonNullableFields as UpdateEventResponseNonNullableFields, WebhookIdentityType$2 as WebhookIdentityType, type ZonedDate$1 as ZonedDate, type index_d$2__publicOnEventCancelledType as _publicOnEventCancelledType, type index_d$2__publicOnEventCreatedType as _publicOnEventCreatedType, type index_d$2__publicOnEventRecurringSplitType as _publicOnEventRecurringSplitType, type index_d$2__publicOnEventUpdatedType as _publicOnEventUpdatedType, index_d$2_bulkCancelEvent as bulkCancelEvent, index_d$2_bulkCreateEvent as bulkCreateEvent, index_d$2_bulkUpdateEvent as bulkUpdateEvent, index_d$2_cancelEvent as cancelEvent, index_d$2_createEvent as createEvent, index_d$2_getEvent as getEvent, index_d$2_listEvents as listEvents, index_d$2_listEventsByContactId as listEventsByContactId, index_d$2_listEventsByMemberId as listEventsByMemberId, index_d$2_onEventCancelled as onEventCancelled, index_d$2_onEventCreated as onEventCreated, index_d$2_onEventRecurringSplit as onEventRecurringSplit, index_d$2_onEventUpdated as onEventUpdated, onEventCancelled$1 as publicOnEventCancelled, onEventCreated$1 as publicOnEventCreated, onEventRecurringSplit$1 as publicOnEventRecurringSplit, onEventUpdated$1 as publicOnEventUpdated, index_d$2_queryEvents as queryEvents, index_d$2_restoreEventDefaults as restoreEventDefaults, index_d$2_splitRecurringEvent as splitRecurringEvent, index_d$2_updateEvent as updateEvent };
|
|
2290
|
+
export { type ActionEvent$2 as ActionEvent, type Address$2 as Address, type AddressHint$2 as AddressHint, type index_d$2_ApplicationError as ApplicationError, type BaseEventMetadata$2 as BaseEventMetadata, type index_d$2_BulkActionMetadata as BulkActionMetadata, type index_d$2_BulkCancelEventOptions as BulkCancelEventOptions, type index_d$2_BulkCancelEventRequest as BulkCancelEventRequest, type index_d$2_BulkCancelEventResponse as BulkCancelEventResponse, type index_d$2_BulkCancelEventResponseNonNullableFields as BulkCancelEventResponseNonNullableFields, type index_d$2_BulkCreateEventOptions as BulkCreateEventOptions, type index_d$2_BulkCreateEventRequest as BulkCreateEventRequest, type index_d$2_BulkCreateEventResponse as BulkCreateEventResponse, type index_d$2_BulkCreateEventResponseNonNullableFields as BulkCreateEventResponseNonNullableFields, type index_d$2_BulkEventResult as BulkEventResult, type index_d$2_BulkUpdateEventOptions as BulkUpdateEventOptions, type index_d$2_BulkUpdateEventRequest as BulkUpdateEventRequest, type index_d$2_BulkUpdateEventRequestMaskedEvent as BulkUpdateEventRequestMaskedEvent, type index_d$2_BulkUpdateEventResponse as BulkUpdateEventResponse, type index_d$2_BulkUpdateEventResponseNonNullableFields as BulkUpdateEventResponseNonNullableFields, type BusinessSchedule$2 as BusinessSchedule, type index_d$2_CancelEventOptions as CancelEventOptions, type index_d$2_CancelEventRequest as CancelEventRequest, type index_d$2_CancelEventResponse as CancelEventResponse, type index_d$2_CancelEventResponseNonNullableFields as CancelEventResponseNonNullableFields, type Categories$2 as Categories, type ChangeContext$2 as ChangeContext, type ChangeContextPayloadOneOf$2 as ChangeContextPayloadOneOf, type index_d$2_CommonCursorPaging as CommonCursorPaging, type index_d$2_CommonCursorPagingMetadata as CommonCursorPagingMetadata, type index_d$2_CommonCursors as CommonCursors, type CommonIdentificationData$1 as CommonIdentificationData, type CommonIdentificationDataIdOneOf$1 as CommonIdentificationDataIdOneOf, type ConferencingDetails$1 as ConferencingDetails, type ConsentPolicy$2 as ConsentPolicy, type index_d$2_CreateEventOptions as CreateEventOptions, type index_d$2_CreateEventRequest as CreateEventRequest, type index_d$2_CreateEventResponse as CreateEventResponse, type index_d$2_CreateEventResponseNonNullableFields as CreateEventResponseNonNullableFields, type CursorPaging$1 as CursorPaging, type CursorPagingMetadata$1 as CursorPagingMetadata, type CursorQuery$1 as CursorQuery, type CursorQueryPagingMethodOneOf$1 as CursorQueryPagingMethodOneOf, type Cursors$1 as Cursors, index_d$2_Day as Day, DayOfWeek$2 as DayOfWeek, type index_d$2_DeleteTargetsRequest as DeleteTargetsRequest, type index_d$2_DeleteTargetsResponse as DeleteTargetsResponse, type DomainEvent$2 as DomainEvent, type DomainEventBodyOneOf$2 as DomainEventBodyOneOf, type Empty$2 as Empty, type EntityCreatedEvent$2 as EntityCreatedEvent, type EntityDeletedEvent$2 as EntityDeletedEvent, type EntityUpdatedEvent$2 as EntityUpdatedEvent, type index_d$2_Event as Event, type index_d$2_EventCancelled as EventCancelled, type index_d$2_EventCancelledEnvelope as EventCancelledEnvelope, type index_d$2_EventCreatedEnvelope as EventCreatedEnvelope, type index_d$2_EventDeletedEnvelope as EventDeletedEnvelope, type EventMetadata$2 as EventMetadata, type index_d$2_EventNonNullableFields as EventNonNullableFields, type index_d$2_EventRecurringSplitEnvelope as EventRecurringSplitEnvelope, type index_d$2_EventUpdatedEnvelope as EventUpdatedEnvelope, type index_d$2_EventUpdatedWithMetadata as EventUpdatedWithMetadata, type index_d$2_EventsQueryBuilder as EventsQueryBuilder, type index_d$2_EventsQueryResult as EventsQueryResult, type ExtendedFields$1 as ExtendedFields, index_d$2_Field as Field, index_d$2_Frequency as Frequency, type GeoCoordinates$2 as GeoCoordinates, type index_d$2_GetEventOptions as GetEventOptions, type index_d$2_GetEventRequest as GetEventRequest, type index_d$2_GetEventResponse as GetEventResponse, type index_d$2_GetEventResponseNonNullableFields as GetEventResponseNonNullableFields, type IdentificationData$2 as IdentificationData, type IdentificationDataIdOneOf$2 as IdentificationDataIdOneOf, IdentityType$1 as IdentityType, type index_d$2_ItemMetadata as ItemMetadata, type index_d$2_ListEventsByContactIdOptions as ListEventsByContactIdOptions, type index_d$2_ListEventsByContactIdRequest as ListEventsByContactIdRequest, type index_d$2_ListEventsByContactIdResponse as ListEventsByContactIdResponse, type index_d$2_ListEventsByContactIdResponseNonNullableFields as ListEventsByContactIdResponseNonNullableFields, type index_d$2_ListEventsByMemberIdOptions as ListEventsByMemberIdOptions, type index_d$2_ListEventsByMemberIdRequest as ListEventsByMemberIdRequest, type index_d$2_ListEventsByMemberIdResponse as ListEventsByMemberIdResponse, type index_d$2_ListEventsByMemberIdResponseNonNullableFields as ListEventsByMemberIdResponseNonNullableFields, type index_d$2_ListEventsOptions as ListEventsOptions, type index_d$2_ListEventsRequest as ListEventsRequest, type index_d$2_ListEventsResponse as ListEventsResponse, type index_d$2_ListEventsResponseNonNullableFields as ListEventsResponseNonNullableFields, type index_d$2_ListRecurringEventInstancesHistoryRequest as ListRecurringEventInstancesHistoryRequest, type index_d$2_ListRecurringEventInstancesHistoryResponse as ListRecurringEventInstancesHistoryResponse, type Locale$2 as Locale, type Location$1 as Location, LocationType$1 as LocationType, type index_d$2_MaskedEvent as MaskedEvent, type MessageEnvelope$2 as MessageEnvelope, type Multilingual$2 as Multilingual, type index_d$2_Participant as Participant, type ParticipantNotification$1 as ParticipantNotification, type index_d$2_Participants as Participants, index_d$2_ParticipantsStatus as ParticipantsStatus, type Permission$1 as Permission, PlacementType$2 as PlacementType, type Properties$2 as Properties, type PropertiesChange$2 as PropertiesChange, type index_d$2_QueryEventsOptions as QueryEventsOptions, type index_d$2_QueryEventsRequest as QueryEventsRequest, type index_d$2_QueryEventsResponse as QueryEventsResponse, type index_d$2_QueryEventsResponseNonNullableFields as QueryEventsResponseNonNullableFields, type index_d$2_RecurrenceRule as RecurrenceRule, index_d$2_RecurrenceType as RecurrenceType, type index_d$2_RecurringEventSplit as RecurringEventSplit, RequestedFields$1 as RequestedFields, ResolutionMethod$2 as ResolutionMethod, type index_d$2_Resource as Resource, type index_d$2_RestoreEventDefaultsOptions as RestoreEventDefaultsOptions, type index_d$2_RestoreEventDefaultsRequest as RestoreEventDefaultsRequest, type index_d$2_RestoreEventDefaultsResponse as RestoreEventDefaultsResponse, type index_d$2_RestoreEventDefaultsResponseNonNullableFields as RestoreEventDefaultsResponseNonNullableFields, type RestoreInfo$2 as RestoreInfo, Role$1 as Role, type SiteCloned$2 as SiteCloned, type SiteCreated$2 as SiteCreated, type SitePropertiesEvent$2 as SitePropertiesEvent, type SitePropertiesNotification$2 as SitePropertiesNotification, index_d$2_SortOrder as SortOrder, type index_d$2_Sorting as Sorting, type SpecialHourPeriod$2 as SpecialHourPeriod, type index_d$2_SplitRecurringEventOptions as SplitRecurringEventOptions, type index_d$2_SplitRecurringEventRequest as SplitRecurringEventRequest, type index_d$2_SplitRecurringEventResponse as SplitRecurringEventResponse, type index_d$2_SplitRecurringEventResponseNonNullableFields as SplitRecurringEventResponseNonNullableFields, Status$2 as Status, type SupportedLanguage$2 as SupportedLanguage, type TimePeriod$2 as TimePeriod, type Translation$2 as Translation, index_d$2_Transparency as Transparency, Type$1 as Type, type index_d$2_UpdateEvent as UpdateEvent, type index_d$2_UpdateEventOptions as UpdateEventOptions, type index_d$2_UpdateEventParticipantsRequest as UpdateEventParticipantsRequest, type index_d$2_UpdateEventParticipantsResponse as UpdateEventParticipantsResponse, type index_d$2_UpdateEventRequest as UpdateEventRequest, type index_d$2_UpdateEventResponse as UpdateEventResponse, type index_d$2_UpdateEventResponseNonNullableFields as UpdateEventResponseNonNullableFields, WebhookIdentityType$2 as WebhookIdentityType, type ZonedDate$1 as ZonedDate, type index_d$2__publicOnEventCancelledType as _publicOnEventCancelledType, type index_d$2__publicOnEventCreatedType as _publicOnEventCreatedType, type index_d$2__publicOnEventDeletedType as _publicOnEventDeletedType, type index_d$2__publicOnEventRecurringSplitType as _publicOnEventRecurringSplitType, type index_d$2__publicOnEventUpdatedType as _publicOnEventUpdatedType, index_d$2_bulkCancelEvent as bulkCancelEvent, index_d$2_bulkCreateEvent as bulkCreateEvent, index_d$2_bulkUpdateEvent as bulkUpdateEvent, index_d$2_cancelEvent as cancelEvent, index_d$2_createEvent as createEvent, index_d$2_getEvent as getEvent, index_d$2_listEvents as listEvents, index_d$2_listEventsByContactId as listEventsByContactId, index_d$2_listEventsByMemberId as listEventsByMemberId, index_d$2_onEventCancelled as onEventCancelled, index_d$2_onEventCreated as onEventCreated, index_d$2_onEventDeleted as onEventDeleted, index_d$2_onEventRecurringSplit as onEventRecurringSplit, index_d$2_onEventUpdated as onEventUpdated, onEventCancelled$1 as publicOnEventCancelled, onEventCreated$1 as publicOnEventCreated, onEventDeleted$1 as publicOnEventDeleted, onEventRecurringSplit$1 as publicOnEventRecurringSplit, onEventUpdated$1 as publicOnEventUpdated, index_d$2_queryEvents as queryEvents, index_d$2_restoreEventDefaults as restoreEventDefaults, index_d$2_splitRecurringEvent as splitRecurringEvent, index_d$2_updateEvent as updateEvent };
|
|
2280
2291
|
}
|
|
2281
2292
|
|
|
2282
2293
|
interface Schedule {
|