@wix/bookings 1.0.180 → 1.0.181

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.
@@ -4,4 +4,4 @@ export declare const __metadata: {
4
4
  };
5
5
  export declare function getSessionView(httpClient: HttpClient): () => Promise<import("./bookings-calendar-v2-session-view.universal").GetSessionViewResponse>;
6
6
  export { Transparency, LocationType, LocationStatus, LocationsLocationType, DayOfWeek, ApprovalStatus, CalendarType, Status, SessionType, ConferenceType, Day, RecurringIntervalType, ScheduleStatus, } from './bookings-calendar-v2-session-view.universal';
7
- export { SessionView, SessionViewUpdated, SessionViewUpdatedTypeOneOf, SessionAddedOrUpdated, Session, CalendarDateTime, LocalDateTime, LinkedSchedule, Location, Address, AddressStreetOneOf, StreetAddress, AddressLocation, Subdivision, LocationsLocation, LocationsAddress, LocationsStreetAddress, LocationsAddressLocation, BusinessSchedule, TimePeriod, SpecialHourPeriod, Rate, Price, Participant, ExternalCalendarInfo, ExternalCalendarOverrides, CalendarConference, SessionVersion, SessionRemoved, SessionViewExtended, FeedEvent, FeedEventTypeOneOf, WindowExtended, WindowMoved, GetSessionViewRequest, GetSessionViewResponse, ExtendSessionViewRequest, ExtendSessionViewResponse, ReplayRequest, ReplayResponse, Window, FeedReplayEvent, FeedReplayEventTypeOneOf, SessionAdded, ReplayCompleted, ScheduleNotification, ScheduleNotificationEventOneOf, ScheduleCreated, Schedule, RecurringInterval, Interval, Frequency, Availability, AvailabilityConstraints, SplitInterval, Version, ConferenceProvider, ScheduleUpdated, RecurringSessionsUpdated, ParticipantNotification, ScheduleCancelled, SessionCreated, SessionUpdated, SessionCancelled, AvailabilityPolicyUpdated, AvailabilityPolicy, IntervalSplit, RecurringSessionSplit, ScheduleUnassignedFromUser, MultipleSessionsCreated, ScheduleWithSessions, SitePropertiesOnScheduleCreation, MigrationEvent, MigrationData, StaffData, Empty, Task, TaskKey, TaskAction, TaskActionActionOneOf, Complete, Cancel, Reschedule, } from './bookings-calendar-v2-session-view.universal';
7
+ export { SessionView, SessionViewUpdated, SessionViewUpdatedTypeOneOf, SessionAddedOrUpdated, Session, CalendarDateTime, LocalDateTime, LinkedSchedule, Location, Address, AddressStreetOneOf, StreetAddress, AddressLocation, Subdivision, LocationsLocation, LocationsAddress, LocationsStreetAddress, LocationsAddressLocation, BusinessSchedule, TimePeriod, SpecialHourPeriod, Rate, Price, Participant, ExternalCalendarInfo, ExternalCalendarOverrides, CalendarConference, SessionVersion, SessionRemoved, SessionViewExtended, FeedEvent, FeedEventTypeOneOf, WindowExtended, WindowMoved, GetSessionViewRequest, GetSessionViewResponse, ExtendSessionViewRequest, ExtendSessionViewResponse, ReplayRequest, ReplayResponse, Window, FeedReplayEvent, FeedReplayEventTypeOneOf, SessionAdded, ReplayCompleted, ScheduleNotification, ScheduleNotificationEventOneOf, ScheduleCreated, Schedule, RecurringInterval, Interval, Frequency, Availability, AvailabilityConstraints, SplitInterval, Version, ConferenceProvider, ScheduleUpdated, RecurringSessionsUpdated, ParticipantNotification, ScheduleCancelled, SessionCreated, SessionUpdated, SessionCancelled, AvailabilityPolicyUpdated, AvailabilityPolicy, IntervalSplit, RecurringSessionSplit, ScheduleUnassignedFromUser, MultipleSessionsCreated, ScheduleWithSessions, SitePropertiesOnScheduleCreation, MigrationEvent, MigrationData, StaffData, Empty, Task, TaskKey, TaskAction, TaskActionActionOneOf, Complete, Cancel, Reschedule, DomainEvent, DomainEventBodyOneOf, EntityCreatedEvent, EntityUpdatedEvent, EntityDeletedEvent, ActionEvent, ExtendedFieldsUpdatedEvent, } from './bookings-calendar-v2-session-view.universal';
@@ -1121,3 +1121,74 @@ export interface Reschedule {
1121
1121
  executeAt?: Date;
1122
1122
  payload?: string | null;
1123
1123
  }
1124
+ export interface DomainEvent extends DomainEventBodyOneOf {
1125
+ createdEvent?: EntityCreatedEvent;
1126
+ updatedEvent?: EntityUpdatedEvent;
1127
+ deletedEvent?: EntityDeletedEvent;
1128
+ actionEvent?: ActionEvent;
1129
+ extendedFieldsUpdatedEvent?: ExtendedFieldsUpdatedEvent;
1130
+ /** random GUID so clients can tell if event was already handled */
1131
+ id?: string;
1132
+ /**
1133
+ * Assumes actions are also always typed to an entity_type
1134
+ * Example: wix.stores.catalog.product, wix.bookings.session, wix.payments.transaction
1135
+ */
1136
+ entityFqdn?: string;
1137
+ /**
1138
+ * This is top level to ease client code dispatching of messages (switch on entity_fqdn+slug)
1139
+ * This is although the created/updated/deleted notion is duplication of the oneof types
1140
+ * Example: created/updated/deleted/started/completed/email_opened
1141
+ */
1142
+ slug?: string;
1143
+ /**
1144
+ * Assuming that all messages including Actions have id
1145
+ * Example: The id of the specific order, the id of a specific campaign
1146
+ */
1147
+ entityId?: string;
1148
+ /** The time of the event. Useful if there was a delay in dispatching */
1149
+ eventTime?: Date;
1150
+ /**
1151
+ * A field that should be set if this event was triggered by an anonymize request.
1152
+ * For example you must set it to true when sending an event as a result of a GDPR right to be forgotten request.
1153
+ * NOTE: This field is not relevant for `EntityCreatedEvent` but is located here for better ergonomics of consumers.
1154
+ */
1155
+ triggeredByAnonymizeRequest?: boolean | null;
1156
+ /** If present, indicates the action that triggered the event. */
1157
+ originatedFrom?: string | null;
1158
+ /**
1159
+ * A sequence number defining the order of updates to the underlying entity.
1160
+ * For example, given that some entity was updated at 16:00 and than again at 16:01,
1161
+ * it is guaranteed that the sequence number of the second update is strictly higher than the first.
1162
+ * As the consumer, you can use this value to ensure that you handle messages in the correct order.
1163
+ * To do so, you will need to persist this number on your end, and compare the sequence number from the
1164
+ * message against the one you have stored. Given that the stored number is higher, you should ignore the message.
1165
+ */
1166
+ entityEventSequence?: string | null;
1167
+ }
1168
+ /** @oneof */
1169
+ export interface DomainEventBodyOneOf {
1170
+ createdEvent?: EntityCreatedEvent;
1171
+ updatedEvent?: EntityUpdatedEvent;
1172
+ deletedEvent?: EntityDeletedEvent;
1173
+ actionEvent?: ActionEvent;
1174
+ extendedFieldsUpdatedEvent?: ExtendedFieldsUpdatedEvent;
1175
+ }
1176
+ export interface EntityCreatedEvent {
1177
+ entityAsJson?: string;
1178
+ }
1179
+ export interface EntityUpdatedEvent {
1180
+ /**
1181
+ * Since platformized APIs only expose PATCH and not PUT we can't assume that the fields sent from the client are the actual diff.
1182
+ * This means that to generate a list of changed fields (as opposed to sent fields) one needs to traverse both objects.
1183
+ * We don't want to impose this on all developers and so we leave this traversal to the notification recipients which need it.
1184
+ */
1185
+ currentEntityAsJson?: string;
1186
+ }
1187
+ export interface EntityDeletedEvent {
1188
+ }
1189
+ export interface ActionEvent {
1190
+ bodyAsJson?: string;
1191
+ }
1192
+ export interface ExtendedFieldsUpdatedEvent {
1193
+ currentEntityAsJson?: string;
1194
+ }
@@ -1121,6 +1121,77 @@ export interface Reschedule {
1121
1121
  executeAt?: Date;
1122
1122
  payload?: string | null;
1123
1123
  }
1124
+ export interface DomainEvent extends DomainEventBodyOneOf {
1125
+ createdEvent?: EntityCreatedEvent;
1126
+ updatedEvent?: EntityUpdatedEvent;
1127
+ deletedEvent?: EntityDeletedEvent;
1128
+ actionEvent?: ActionEvent;
1129
+ extendedFieldsUpdatedEvent?: ExtendedFieldsUpdatedEvent;
1130
+ /** random GUID so clients can tell if event was already handled */
1131
+ _id?: string;
1132
+ /**
1133
+ * Assumes actions are also always typed to an entity_type
1134
+ * Example: wix.stores.catalog.product, wix.bookings.session, wix.payments.transaction
1135
+ */
1136
+ entityFqdn?: string;
1137
+ /**
1138
+ * This is top level to ease client code dispatching of messages (switch on entity_fqdn+slug)
1139
+ * This is although the created/updated/deleted notion is duplication of the oneof types
1140
+ * Example: created/updated/deleted/started/completed/email_opened
1141
+ */
1142
+ slug?: string;
1143
+ /**
1144
+ * Assuming that all messages including Actions have id
1145
+ * Example: The id of the specific order, the id of a specific campaign
1146
+ */
1147
+ entityId?: string;
1148
+ /** The time of the event. Useful if there was a delay in dispatching */
1149
+ eventTime?: Date;
1150
+ /**
1151
+ * A field that should be set if this event was triggered by an anonymize request.
1152
+ * For example you must set it to true when sending an event as a result of a GDPR right to be forgotten request.
1153
+ * NOTE: This field is not relevant for `EntityCreatedEvent` but is located here for better ergonomics of consumers.
1154
+ */
1155
+ triggeredByAnonymizeRequest?: boolean | null;
1156
+ /** If present, indicates the action that triggered the event. */
1157
+ originatedFrom?: string | null;
1158
+ /**
1159
+ * A sequence number defining the order of updates to the underlying entity.
1160
+ * For example, given that some entity was updated at 16:00 and than again at 16:01,
1161
+ * it is guaranteed that the sequence number of the second update is strictly higher than the first.
1162
+ * As the consumer, you can use this value to ensure that you handle messages in the correct order.
1163
+ * To do so, you will need to persist this number on your end, and compare the sequence number from the
1164
+ * message against the one you have stored. Given that the stored number is higher, you should ignore the message.
1165
+ */
1166
+ entityEventSequence?: string | null;
1167
+ }
1168
+ /** @oneof */
1169
+ export interface DomainEventBodyOneOf {
1170
+ createdEvent?: EntityCreatedEvent;
1171
+ updatedEvent?: EntityUpdatedEvent;
1172
+ deletedEvent?: EntityDeletedEvent;
1173
+ actionEvent?: ActionEvent;
1174
+ extendedFieldsUpdatedEvent?: ExtendedFieldsUpdatedEvent;
1175
+ }
1176
+ export interface EntityCreatedEvent {
1177
+ entityAsJson?: string;
1178
+ }
1179
+ export interface EntityUpdatedEvent {
1180
+ /**
1181
+ * Since platformized APIs only expose PATCH and not PUT we can't assume that the fields sent from the client are the actual diff.
1182
+ * This means that to generate a list of changed fields (as opposed to sent fields) one needs to traverse both objects.
1183
+ * We don't want to impose this on all developers and so we leave this traversal to the notification recipients which need it.
1184
+ */
1185
+ currentEntityAsJson?: string;
1186
+ }
1187
+ export interface EntityDeletedEvent {
1188
+ }
1189
+ export interface ActionEvent {
1190
+ bodyAsJson?: string;
1191
+ }
1192
+ export interface ExtendedFieldsUpdatedEvent {
1193
+ currentEntityAsJson?: string;
1194
+ }
1124
1195
  /**
1125
1196
  * Gets the sessions view information.
1126
1197
  * E.g. the current view end date, or the future duration in days the view should strive for.
@@ -1 +1 @@
1
- {"version":3,"file":"bookings-calendar-v2-session-view.universal.js","sourceRoot":"","sources":["../../../src/bookings-calendar-v2-session-view.universal.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,kDAAqE;AAErE,qHAAuG;AAEvG,IAAI,SAAS,GAAG,KAAK,CAAC;AAEtB,SAAS,KAAK,CAAC,GAAG,IAAW;IAC3B,SAAS,IAAI,OAAO,CAAC,GAAG,CAAC,GAAG,IAAI,CAAC,CAAC;AACpC,CAAC;AAED,SAAS,SAAS,CAAC,GAAQ;IACzB,OAAO,GAAG,CAAC;AACb,CAAC;AAEY,QAAA,OAAO,GAAG;IACrB,cAAc,EAAE;QACd,EAAE,EAAE,GAAG,EAAE,CAAC,CAAC,SAAS,GAAG,IAAI,CAAC;QAC5B,GAAG,EAAE,GAAG,EAAE,CAAC,CAAC,SAAS,GAAG,KAAK,CAAC;KAC/B;CACF,CAAC;AACF,MAAM,aAAa,GAAG,GAAG,CAAC;AAC1B,MAAM,eAAe,GAAG,GAAG,CAAC;AA2P5B,IAAY,YAMX;AAND,WAAY,YAAY;IACtB,uCAAuB,CAAA;IACvB,gEAAgE;IAChE,6BAAa,CAAA;IACb,kFAAkF;IAClF,6BAAa,CAAA;AACf,CAAC,EANW,YAAY,GAAZ,oBAAY,KAAZ,oBAAY,QAMvB;AAiBD,IAAY,YAKX;AALD,WAAY,YAAY;IACtB,uCAAuB,CAAA;IACvB,iDAAiC,CAAA;IACjC,6CAA6B,CAAA;IAC7B,iCAAiB,CAAA;AACnB,CAAC,EALW,YAAY,GAAZ,oBAAY,KAAZ,oBAAY,QAKvB;AAkHD,qBAAqB;AACrB,IAAY,cAGX;AAHD,WAAY,cAAc;IACxB,mCAAiB,CAAA;IACjB,uCAAqB,CAAA;AACvB,CAAC,EAHW,cAAc,GAAd,sBAAc,KAAd,sBAAc,QAGzB;AAED,qBAAqB;AACrB,IAAY,qBAMX;AAND,WAAY,qBAAqB;IAC/B,4CAAmB,CAAA;IACnB,0CAAiB,CAAA;IACjB,4CAAmB,CAAA;IACnB,gDAAuB,CAAA;IACvB,sDAA6B,CAAA;AAC/B,CAAC,EANW,qBAAqB,GAArB,6BAAqB,KAArB,6BAAqB,QAMhC;AA6DD,uCAAuC;AACvC,IAAY,SAQX;AARD,WAAY,SAAS;IACnB,8BAAiB,CAAA;IACjB,gCAAmB,CAAA;IACnB,oCAAuB,CAAA;IACvB,kCAAqB,CAAA;IACrB,8BAAiB,CAAA;IACjB,kCAAqB,CAAA;IACrB,8BAAiB,CAAA;AACnB,CAAC,EARW,SAAS,GAAT,iBAAS,KAAT,iBAAS,QAQpB;AAuED,IAAY,cASX;AATD,WAAY,cAAc;IACxB,eAAe;IACf,yCAAuB,CAAA;IACvB,iCAAiC;IACjC,qCAAmB,CAAA;IACnB,gCAAgC;IAChC,uCAAqB,CAAA;IACrB,gCAAgC;IAChC,uCAAqB,CAAA;AACvB,CAAC,EATW,cAAc,GAAd,sBAAc,KAAd,sBAAc,QASzB;AAOD,IAAY,YAUX;AAVD,WAAY,YAAY;IACtB,uCAAuB,CAAA;IACvB,iCAAiB,CAAA;IACjB,+BAAe,CAAA;IACf,+BAA+B;IAC/B,mCAAmB,CAAA;IACnB,+BAA+B;IAC/B,yCAAyB,CAAA;IACzB,uCAAuB,CAAA;IACvB,+BAAe,CAAA;AACjB,CAAC,EAVW,YAAY,GAAZ,oBAAY,KAAZ,oBAAY,QAUvB;AASD,IAAY,MAUX;AAVD,WAAY,MAAM;IAChB,iCAAuB,CAAA;IACvB,gDAAgD;IAChD,iCAAuB,CAAA;IACvB;;;;OAIG;IACH,iCAAuB,CAAA;AACzB,CAAC,EAVW,MAAM,GAAN,cAAM,KAAN,cAAM,QAUjB;AAED,IAAY,WAaX;AAbD,WAAY,WAAW;IACrB,sCAAuB,CAAA;IACvB;;;OAGG;IACH,8BAAe,CAAA;IACf,mEAAmE;IACnE,8CAA+B,CAAA;IAC/B,2CAA2C;IAC3C,sDAAuC,CAAA;IACvC,gGAAgG;IAChG,4CAA6B,CAAA;AAC/B,CAAC,EAbW,WAAW,GAAX,mBAAW,KAAX,mBAAW,QAatB;AA8BD,IAAY,cAMX;AAND,WAAY,cAAc;IACxB,yCAAuB,CAAA;IACvB,oCAAoC;IACpC,qEAAmD,CAAA;IACnD,4BAA4B;IAC5B,mCAAiB,CAAA;AACnB,CAAC,EANW,cAAc,GAAd,sBAAc,KAAd,sBAAc,QAMzB;AAgSD,IAAY,GAiBX;AAjBD,WAAY,GAAG;IACb,iBAAiB;IACjB,8BAAuB,CAAA;IACvB,cAAc;IACd,kBAAW,CAAA;IACX,eAAe;IACf,kBAAW,CAAA;IACX,iBAAiB;IACjB,kBAAW,CAAA;IACX,gBAAgB;IAChB,kBAAW,CAAA;IACX,cAAc;IACd,kBAAW,CAAA;IACX,gBAAgB;IAChB,kBAAW,CAAA;IACX,cAAc;IACd,kBAAW,CAAA;AACb,CAAC,EAjBW,GAAG,GAAH,WAAG,KAAH,WAAG,QAiBd;AAOD,IAAY,qBASX;AATD,WAAY,qBAAqB;IAC/B,2EAA2E;IAC3E,gDAAuB,CAAA;IACvB,qCAAqC;IACrC,wCAAe,CAAA;IACf,iBAAiB;IACjB,gEAAuC,CAAA;IACvC,4CAA4C;IAC5C,sDAA6B,CAAA;AAC/B,CAAC,EATW,qBAAqB,GAArB,6BAAqB,KAArB,6BAAqB,QAShC;AAwDD,IAAY,cAMX;AAND,WAAY,cAAc;IACxB,yCAAuB,CAAA;IACvB,sDAAsD;IACtD,qCAAmB,CAAA;IACnB,sCAAsC;IACtC,yCAAuB,CAAA;AACzB,CAAC,EANW,cAAc,GAAd,sBAAc,KAAd,sBAAc,QAMzB;AAyLD,MAAM,sBAAsB,GAAG,EAAE,CAAC;AAClC,MAAM,uBAAuB,GAAG,EAAE,CAAC;AAEnC;;;;;GAKG;AACH,SAAsB,cAAc;;;QAClC,MAAM,qBAAqB,GAAG,EAAE,CAAC;QACjC,MAAM,sBAAsB,GAAG,GAAG,CAAC;QAEnC,aAAa;QACb,MAAM,EAAE,UAAU,EAAE,WAAW,EAAE,GAAG,SAAS,CAAC,CAAC,CAG9C,CAAC;QAEF,MAAM,EAAE,mBAAmB,EAAE,GAAG,IAAA,iBAAU,EAAC;YACzC,UAAU,EAAE,sBAAsB;YAClC,UAAU,EAAE,EAAE;YACd,kBAAkB,EAAE;gBAClB,KAAK,EAAE,EAAE;gBACT,cAAc,EAAE,eAAe;aAChC;YACD,oBAAoB,EAAE,qBAAqB;SAC5C,CAAC,CAAC;QAEH,MAAM,EAAE,QAAQ,EAAE,GAAG,IAAA,iBAAU,EAAC;YAC9B,UAAU,EAAE,uBAAuB;YACnC,UAAU,EAAE,EAAE;YACd,kBAAkB,EAAE;gBAClB,KAAK,EAAE,CAAC,GAAG,CAAC,aAAa,CAAC,CAAC;gBAC3B,cAAc,EAAE,aAAa;aAC9B;YACD,oBAAoB,EAAE,sBAAsB;SAC7C,CAAC,CAAC;QAEH,MAAM,OAAO,GAAG,mBAAmB,CAAC,EAAE,CAAC,CAAC;QAExC,MAAM,OAAO,GACX,0CAA0C,CAAC,cAAc,CAAC,OAAO,CAAC,CAAC;QAErE,KAAK,CAAC,0CAA0C,SAAS,CAAC,OAAO,CAAC,EAAE,CAAC,CAAC;QAEtE,MAAA,WAAW,aAAX,WAAW,uBAAX,WAAW,CAAE,UAAU,+CAAvB,WAAW,CAAgB,CAAC;QAC5B,IAAI;YACF,MAAM,MAAM,GAAG,MAAM,UAAU,CAAC,OAAO,CAAC,OAAO,CAAC,CAAC;YACjD,MAAA,WAAW,aAAX,WAAW,uBAAX,WAAW,CAAE,SAAS,+CAAtB,WAAW,EAAc,MAAM,CAAC,CAAC;YAEjC,OAAO,QAAQ,CAAC,MAAM,CAAC,IAAI,CAAQ,CAAC;SACrC;QAAC,OAAO,GAAQ,EAAE;YACjB,MAAM,gBAAgB,GAAG,IAAA,qBAAc,EAAC,GAAG,EAAE,qBAAqB,EAAE,EAAE,CAAC,CAAC;YACxE,MAAA,WAAW,aAAX,WAAW,uBAAX,WAAW,CAAE,OAAO,+CAApB,WAAW,EAAY,GAAG,CAAC,CAAC;YAE5B,MAAM,gBAAgB,CAAC;SACxB;;CACF;AAjDD,wCAiDC"}
1
+ {"version":3,"file":"bookings-calendar-v2-session-view.universal.js","sourceRoot":"","sources":["../../../src/bookings-calendar-v2-session-view.universal.ts"],"names":[],"mappings":"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"}
@@ -4,4 +4,4 @@ export declare const __metadata: {
4
4
  };
5
5
  export declare function getSessionView(httpClient: HttpClient): () => Promise<import("./bookings-calendar-v2-session-view.universal").GetSessionViewResponse>;
6
6
  export { Transparency, LocationType, LocationStatus, LocationsLocationType, DayOfWeek, ApprovalStatus, CalendarType, Status, SessionType, ConferenceType, Day, RecurringIntervalType, ScheduleStatus, } from './bookings-calendar-v2-session-view.universal';
7
- export { SessionView, SessionViewUpdated, SessionViewUpdatedTypeOneOf, SessionAddedOrUpdated, Session, CalendarDateTime, LocalDateTime, LinkedSchedule, Location, Address, AddressStreetOneOf, StreetAddress, AddressLocation, Subdivision, LocationsLocation, LocationsAddress, LocationsStreetAddress, LocationsAddressLocation, BusinessSchedule, TimePeriod, SpecialHourPeriod, Rate, Price, Participant, ExternalCalendarInfo, ExternalCalendarOverrides, CalendarConference, SessionVersion, SessionRemoved, SessionViewExtended, FeedEvent, FeedEventTypeOneOf, WindowExtended, WindowMoved, GetSessionViewRequest, GetSessionViewResponse, ExtendSessionViewRequest, ExtendSessionViewResponse, ReplayRequest, ReplayResponse, Window, FeedReplayEvent, FeedReplayEventTypeOneOf, SessionAdded, ReplayCompleted, ScheduleNotification, ScheduleNotificationEventOneOf, ScheduleCreated, Schedule, RecurringInterval, Interval, Frequency, Availability, AvailabilityConstraints, SplitInterval, Version, ConferenceProvider, ScheduleUpdated, RecurringSessionsUpdated, ParticipantNotification, ScheduleCancelled, SessionCreated, SessionUpdated, SessionCancelled, AvailabilityPolicyUpdated, AvailabilityPolicy, IntervalSplit, RecurringSessionSplit, ScheduleUnassignedFromUser, MultipleSessionsCreated, ScheduleWithSessions, SitePropertiesOnScheduleCreation, MigrationEvent, MigrationData, StaffData, Empty, Task, TaskKey, TaskAction, TaskActionActionOneOf, Complete, Cancel, Reschedule, } from './bookings-calendar-v2-session-view.universal';
7
+ export { SessionView, SessionViewUpdated, SessionViewUpdatedTypeOneOf, SessionAddedOrUpdated, Session, CalendarDateTime, LocalDateTime, LinkedSchedule, Location, Address, AddressStreetOneOf, StreetAddress, AddressLocation, Subdivision, LocationsLocation, LocationsAddress, LocationsStreetAddress, LocationsAddressLocation, BusinessSchedule, TimePeriod, SpecialHourPeriod, Rate, Price, Participant, ExternalCalendarInfo, ExternalCalendarOverrides, CalendarConference, SessionVersion, SessionRemoved, SessionViewExtended, FeedEvent, FeedEventTypeOneOf, WindowExtended, WindowMoved, GetSessionViewRequest, GetSessionViewResponse, ExtendSessionViewRequest, ExtendSessionViewResponse, ReplayRequest, ReplayResponse, Window, FeedReplayEvent, FeedReplayEventTypeOneOf, SessionAdded, ReplayCompleted, ScheduleNotification, ScheduleNotificationEventOneOf, ScheduleCreated, Schedule, RecurringInterval, Interval, Frequency, Availability, AvailabilityConstraints, SplitInterval, Version, ConferenceProvider, ScheduleUpdated, RecurringSessionsUpdated, ParticipantNotification, ScheduleCancelled, SessionCreated, SessionUpdated, SessionCancelled, AvailabilityPolicyUpdated, AvailabilityPolicy, IntervalSplit, RecurringSessionSplit, ScheduleUnassignedFromUser, MultipleSessionsCreated, ScheduleWithSessions, SitePropertiesOnScheduleCreation, MigrationEvent, MigrationData, StaffData, Empty, Task, TaskKey, TaskAction, TaskActionActionOneOf, Complete, Cancel, Reschedule, DomainEvent, DomainEventBodyOneOf, EntityCreatedEvent, EntityUpdatedEvent, EntityDeletedEvent, ActionEvent, ExtendedFieldsUpdatedEvent, } from './bookings-calendar-v2-session-view.universal';
@@ -1121,3 +1121,74 @@ export interface Reschedule {
1121
1121
  executeAt?: Date;
1122
1122
  payload?: string | null;
1123
1123
  }
1124
+ export interface DomainEvent extends DomainEventBodyOneOf {
1125
+ createdEvent?: EntityCreatedEvent;
1126
+ updatedEvent?: EntityUpdatedEvent;
1127
+ deletedEvent?: EntityDeletedEvent;
1128
+ actionEvent?: ActionEvent;
1129
+ extendedFieldsUpdatedEvent?: ExtendedFieldsUpdatedEvent;
1130
+ /** random GUID so clients can tell if event was already handled */
1131
+ id?: string;
1132
+ /**
1133
+ * Assumes actions are also always typed to an entity_type
1134
+ * Example: wix.stores.catalog.product, wix.bookings.session, wix.payments.transaction
1135
+ */
1136
+ entityFqdn?: string;
1137
+ /**
1138
+ * This is top level to ease client code dispatching of messages (switch on entity_fqdn+slug)
1139
+ * This is although the created/updated/deleted notion is duplication of the oneof types
1140
+ * Example: created/updated/deleted/started/completed/email_opened
1141
+ */
1142
+ slug?: string;
1143
+ /**
1144
+ * Assuming that all messages including Actions have id
1145
+ * Example: The id of the specific order, the id of a specific campaign
1146
+ */
1147
+ entityId?: string;
1148
+ /** The time of the event. Useful if there was a delay in dispatching */
1149
+ eventTime?: Date;
1150
+ /**
1151
+ * A field that should be set if this event was triggered by an anonymize request.
1152
+ * For example you must set it to true when sending an event as a result of a GDPR right to be forgotten request.
1153
+ * NOTE: This field is not relevant for `EntityCreatedEvent` but is located here for better ergonomics of consumers.
1154
+ */
1155
+ triggeredByAnonymizeRequest?: boolean | null;
1156
+ /** If present, indicates the action that triggered the event. */
1157
+ originatedFrom?: string | null;
1158
+ /**
1159
+ * A sequence number defining the order of updates to the underlying entity.
1160
+ * For example, given that some entity was updated at 16:00 and than again at 16:01,
1161
+ * it is guaranteed that the sequence number of the second update is strictly higher than the first.
1162
+ * As the consumer, you can use this value to ensure that you handle messages in the correct order.
1163
+ * To do so, you will need to persist this number on your end, and compare the sequence number from the
1164
+ * message against the one you have stored. Given that the stored number is higher, you should ignore the message.
1165
+ */
1166
+ entityEventSequence?: string | null;
1167
+ }
1168
+ /** @oneof */
1169
+ export interface DomainEventBodyOneOf {
1170
+ createdEvent?: EntityCreatedEvent;
1171
+ updatedEvent?: EntityUpdatedEvent;
1172
+ deletedEvent?: EntityDeletedEvent;
1173
+ actionEvent?: ActionEvent;
1174
+ extendedFieldsUpdatedEvent?: ExtendedFieldsUpdatedEvent;
1175
+ }
1176
+ export interface EntityCreatedEvent {
1177
+ entityAsJson?: string;
1178
+ }
1179
+ export interface EntityUpdatedEvent {
1180
+ /**
1181
+ * Since platformized APIs only expose PATCH and not PUT we can't assume that the fields sent from the client are the actual diff.
1182
+ * This means that to generate a list of changed fields (as opposed to sent fields) one needs to traverse both objects.
1183
+ * We don't want to impose this on all developers and so we leave this traversal to the notification recipients which need it.
1184
+ */
1185
+ currentEntityAsJson?: string;
1186
+ }
1187
+ export interface EntityDeletedEvent {
1188
+ }
1189
+ export interface ActionEvent {
1190
+ bodyAsJson?: string;
1191
+ }
1192
+ export interface ExtendedFieldsUpdatedEvent {
1193
+ currentEntityAsJson?: string;
1194
+ }
@@ -1121,6 +1121,77 @@ export interface Reschedule {
1121
1121
  executeAt?: Date;
1122
1122
  payload?: string | null;
1123
1123
  }
1124
+ export interface DomainEvent extends DomainEventBodyOneOf {
1125
+ createdEvent?: EntityCreatedEvent;
1126
+ updatedEvent?: EntityUpdatedEvent;
1127
+ deletedEvent?: EntityDeletedEvent;
1128
+ actionEvent?: ActionEvent;
1129
+ extendedFieldsUpdatedEvent?: ExtendedFieldsUpdatedEvent;
1130
+ /** random GUID so clients can tell if event was already handled */
1131
+ _id?: string;
1132
+ /**
1133
+ * Assumes actions are also always typed to an entity_type
1134
+ * Example: wix.stores.catalog.product, wix.bookings.session, wix.payments.transaction
1135
+ */
1136
+ entityFqdn?: string;
1137
+ /**
1138
+ * This is top level to ease client code dispatching of messages (switch on entity_fqdn+slug)
1139
+ * This is although the created/updated/deleted notion is duplication of the oneof types
1140
+ * Example: created/updated/deleted/started/completed/email_opened
1141
+ */
1142
+ slug?: string;
1143
+ /**
1144
+ * Assuming that all messages including Actions have id
1145
+ * Example: The id of the specific order, the id of a specific campaign
1146
+ */
1147
+ entityId?: string;
1148
+ /** The time of the event. Useful if there was a delay in dispatching */
1149
+ eventTime?: Date;
1150
+ /**
1151
+ * A field that should be set if this event was triggered by an anonymize request.
1152
+ * For example you must set it to true when sending an event as a result of a GDPR right to be forgotten request.
1153
+ * NOTE: This field is not relevant for `EntityCreatedEvent` but is located here for better ergonomics of consumers.
1154
+ */
1155
+ triggeredByAnonymizeRequest?: boolean | null;
1156
+ /** If present, indicates the action that triggered the event. */
1157
+ originatedFrom?: string | null;
1158
+ /**
1159
+ * A sequence number defining the order of updates to the underlying entity.
1160
+ * For example, given that some entity was updated at 16:00 and than again at 16:01,
1161
+ * it is guaranteed that the sequence number of the second update is strictly higher than the first.
1162
+ * As the consumer, you can use this value to ensure that you handle messages in the correct order.
1163
+ * To do so, you will need to persist this number on your end, and compare the sequence number from the
1164
+ * message against the one you have stored. Given that the stored number is higher, you should ignore the message.
1165
+ */
1166
+ entityEventSequence?: string | null;
1167
+ }
1168
+ /** @oneof */
1169
+ export interface DomainEventBodyOneOf {
1170
+ createdEvent?: EntityCreatedEvent;
1171
+ updatedEvent?: EntityUpdatedEvent;
1172
+ deletedEvent?: EntityDeletedEvent;
1173
+ actionEvent?: ActionEvent;
1174
+ extendedFieldsUpdatedEvent?: ExtendedFieldsUpdatedEvent;
1175
+ }
1176
+ export interface EntityCreatedEvent {
1177
+ entityAsJson?: string;
1178
+ }
1179
+ export interface EntityUpdatedEvent {
1180
+ /**
1181
+ * Since platformized APIs only expose PATCH and not PUT we can't assume that the fields sent from the client are the actual diff.
1182
+ * This means that to generate a list of changed fields (as opposed to sent fields) one needs to traverse both objects.
1183
+ * We don't want to impose this on all developers and so we leave this traversal to the notification recipients which need it.
1184
+ */
1185
+ currentEntityAsJson?: string;
1186
+ }
1187
+ export interface EntityDeletedEvent {
1188
+ }
1189
+ export interface ActionEvent {
1190
+ bodyAsJson?: string;
1191
+ }
1192
+ export interface ExtendedFieldsUpdatedEvent {
1193
+ currentEntityAsJson?: string;
1194
+ }
1124
1195
  /**
1125
1196
  * Gets the sessions view information.
1126
1197
  * E.g. the current view end date, or the future duration in days the view should strive for.
@@ -1 +1 @@
1
- {"version":3,"file":"bookings-calendar-v2-session-view.universal.js","sourceRoot":"","sources":["../../../src/bookings-calendar-v2-session-view.universal.ts"],"names":[],"mappings":";;;;;;;;;AAAA,OAAO,EAAE,UAAU,EAAE,cAAc,EAAE,MAAM,yBAAyB,CAAC;AAErE,OAAO,KAAK,0CAA0C,MAAM,0CAA0C,CAAC;AAEvG,IAAI,SAAS,GAAG,KAAK,CAAC;AAEtB,SAAS,KAAK,CAAC,GAAG,IAAW;IAC3B,SAAS,IAAI,OAAO,CAAC,GAAG,CAAC,GAAG,IAAI,CAAC,CAAC;AACpC,CAAC;AAED,SAAS,SAAS,CAAC,GAAQ;IACzB,OAAO,GAAG,CAAC;AACb,CAAC;AAED,MAAM,CAAC,MAAM,OAAO,GAAG;IACrB,cAAc,EAAE;QACd,EAAE,EAAE,GAAG,EAAE,CAAC,CAAC,SAAS,GAAG,IAAI,CAAC;QAC5B,GAAG,EAAE,GAAG,EAAE,CAAC,CAAC,SAAS,GAAG,KAAK,CAAC;KAC/B;CACF,CAAC;AACF,MAAM,aAAa,GAAG,GAAG,CAAC;AAC1B,MAAM,eAAe,GAAG,GAAG,CAAC;AA2P5B,MAAM,CAAN,IAAY,YAMX;AAND,WAAY,YAAY;IACtB,uCAAuB,CAAA;IACvB,gEAAgE;IAChE,6BAAa,CAAA;IACb,kFAAkF;IAClF,6BAAa,CAAA;AACf,CAAC,EANW,YAAY,KAAZ,YAAY,QAMvB;AAiBD,MAAM,CAAN,IAAY,YAKX;AALD,WAAY,YAAY;IACtB,uCAAuB,CAAA;IACvB,iDAAiC,CAAA;IACjC,6CAA6B,CAAA;IAC7B,iCAAiB,CAAA;AACnB,CAAC,EALW,YAAY,KAAZ,YAAY,QAKvB;AAkHD,qBAAqB;AACrB,MAAM,CAAN,IAAY,cAGX;AAHD,WAAY,cAAc;IACxB,mCAAiB,CAAA;IACjB,uCAAqB,CAAA;AACvB,CAAC,EAHW,cAAc,KAAd,cAAc,QAGzB;AAED,qBAAqB;AACrB,MAAM,CAAN,IAAY,qBAMX;AAND,WAAY,qBAAqB;IAC/B,4CAAmB,CAAA;IACnB,0CAAiB,CAAA;IACjB,4CAAmB,CAAA;IACnB,gDAAuB,CAAA;IACvB,sDAA6B,CAAA;AAC/B,CAAC,EANW,qBAAqB,KAArB,qBAAqB,QAMhC;AA6DD,uCAAuC;AACvC,MAAM,CAAN,IAAY,SAQX;AARD,WAAY,SAAS;IACnB,8BAAiB,CAAA;IACjB,gCAAmB,CAAA;IACnB,oCAAuB,CAAA;IACvB,kCAAqB,CAAA;IACrB,8BAAiB,CAAA;IACjB,kCAAqB,CAAA;IACrB,8BAAiB,CAAA;AACnB,CAAC,EARW,SAAS,KAAT,SAAS,QAQpB;AAuED,MAAM,CAAN,IAAY,cASX;AATD,WAAY,cAAc;IACxB,eAAe;IACf,yCAAuB,CAAA;IACvB,iCAAiC;IACjC,qCAAmB,CAAA;IACnB,gCAAgC;IAChC,uCAAqB,CAAA;IACrB,gCAAgC;IAChC,uCAAqB,CAAA;AACvB,CAAC,EATW,cAAc,KAAd,cAAc,QASzB;AAOD,MAAM,CAAN,IAAY,YAUX;AAVD,WAAY,YAAY;IACtB,uCAAuB,CAAA;IACvB,iCAAiB,CAAA;IACjB,+BAAe,CAAA;IACf,+BAA+B;IAC/B,mCAAmB,CAAA;IACnB,+BAA+B;IAC/B,yCAAyB,CAAA;IACzB,uCAAuB,CAAA;IACvB,+BAAe,CAAA;AACjB,CAAC,EAVW,YAAY,KAAZ,YAAY,QAUvB;AASD,MAAM,CAAN,IAAY,MAUX;AAVD,WAAY,MAAM;IAChB,iCAAuB,CAAA;IACvB,gDAAgD;IAChD,iCAAuB,CAAA;IACvB;;;;OAIG;IACH,iCAAuB,CAAA;AACzB,CAAC,EAVW,MAAM,KAAN,MAAM,QAUjB;AAED,MAAM,CAAN,IAAY,WAaX;AAbD,WAAY,WAAW;IACrB,sCAAuB,CAAA;IACvB;;;OAGG;IACH,8BAAe,CAAA;IACf,mEAAmE;IACnE,8CAA+B,CAAA;IAC/B,2CAA2C;IAC3C,sDAAuC,CAAA;IACvC,gGAAgG;IAChG,4CAA6B,CAAA;AAC/B,CAAC,EAbW,WAAW,KAAX,WAAW,QAatB;AA8BD,MAAM,CAAN,IAAY,cAMX;AAND,WAAY,cAAc;IACxB,yCAAuB,CAAA;IACvB,oCAAoC;IACpC,qEAAmD,CAAA;IACnD,4BAA4B;IAC5B,mCAAiB,CAAA;AACnB,CAAC,EANW,cAAc,KAAd,cAAc,QAMzB;AAgSD,MAAM,CAAN,IAAY,GAiBX;AAjBD,WAAY,GAAG;IACb,iBAAiB;IACjB,8BAAuB,CAAA;IACvB,cAAc;IACd,kBAAW,CAAA;IACX,eAAe;IACf,kBAAW,CAAA;IACX,iBAAiB;IACjB,kBAAW,CAAA;IACX,gBAAgB;IAChB,kBAAW,CAAA;IACX,cAAc;IACd,kBAAW,CAAA;IACX,gBAAgB;IAChB,kBAAW,CAAA;IACX,cAAc;IACd,kBAAW,CAAA;AACb,CAAC,EAjBW,GAAG,KAAH,GAAG,QAiBd;AAOD,MAAM,CAAN,IAAY,qBASX;AATD,WAAY,qBAAqB;IAC/B,2EAA2E;IAC3E,gDAAuB,CAAA;IACvB,qCAAqC;IACrC,wCAAe,CAAA;IACf,iBAAiB;IACjB,gEAAuC,CAAA;IACvC,4CAA4C;IAC5C,sDAA6B,CAAA;AAC/B,CAAC,EATW,qBAAqB,KAArB,qBAAqB,QAShC;AAwDD,MAAM,CAAN,IAAY,cAMX;AAND,WAAY,cAAc;IACxB,yCAAuB,CAAA;IACvB,sDAAsD;IACtD,qCAAmB,CAAA;IACnB,sCAAsC;IACtC,yCAAuB,CAAA;AACzB,CAAC,EANW,cAAc,KAAd,cAAc,QAMzB;AAyLD,MAAM,sBAAsB,GAAG,EAAE,CAAC;AAClC,MAAM,uBAAuB,GAAG,EAAE,CAAC;AAEnC;;;;;GAKG;AACH,MAAM,UAAgB,cAAc;;;QAClC,MAAM,qBAAqB,GAAG,EAAE,CAAC;QACjC,MAAM,sBAAsB,GAAG,GAAG,CAAC;QAEnC,aAAa;QACb,MAAM,EAAE,UAAU,EAAE,WAAW,EAAE,GAAG,SAAS,CAAC,CAAC,CAG9C,CAAC;QAEF,MAAM,EAAE,mBAAmB,EAAE,GAAG,UAAU,CAAC;YACzC,UAAU,EAAE,sBAAsB;YAClC,UAAU,EAAE,EAAE;YACd,kBAAkB,EAAE;gBAClB,KAAK,EAAE,EAAE;gBACT,cAAc,EAAE,eAAe;aAChC;YACD,oBAAoB,EAAE,qBAAqB;SAC5C,CAAC,CAAC;QAEH,MAAM,EAAE,QAAQ,EAAE,GAAG,UAAU,CAAC;YAC9B,UAAU,EAAE,uBAAuB;YACnC,UAAU,EAAE,EAAE;YACd,kBAAkB,EAAE;gBAClB,KAAK,EAAE,CAAC,GAAG,CAAC,aAAa,CAAC,CAAC;gBAC3B,cAAc,EAAE,aAAa;aAC9B;YACD,oBAAoB,EAAE,sBAAsB;SAC7C,CAAC,CAAC;QAEH,MAAM,OAAO,GAAG,mBAAmB,CAAC,EAAE,CAAC,CAAC;QAExC,MAAM,OAAO,GACX,0CAA0C,CAAC,cAAc,CAAC,OAAO,CAAC,CAAC;QAErE,KAAK,CAAC,0CAA0C,SAAS,CAAC,OAAO,CAAC,EAAE,CAAC,CAAC;QAEtE,MAAA,WAAW,aAAX,WAAW,uBAAX,WAAW,CAAE,UAAU,+CAAvB,WAAW,CAAgB,CAAC;QAC5B,IAAI;YACF,MAAM,MAAM,GAAG,MAAM,UAAU,CAAC,OAAO,CAAC,OAAO,CAAC,CAAC;YACjD,MAAA,WAAW,aAAX,WAAW,uBAAX,WAAW,CAAE,SAAS,+CAAtB,WAAW,EAAc,MAAM,CAAC,CAAC;YAEjC,OAAO,QAAQ,CAAC,MAAM,CAAC,IAAI,CAAQ,CAAC;SACrC;QAAC,OAAO,GAAQ,EAAE;YACjB,MAAM,gBAAgB,GAAG,cAAc,CAAC,GAAG,EAAE,qBAAqB,EAAE,EAAE,CAAC,CAAC;YACxE,MAAA,WAAW,aAAX,WAAW,uBAAX,WAAW,CAAE,OAAO,+CAApB,WAAW,EAAY,GAAG,CAAC,CAAC;YAE5B,MAAM,gBAAgB,CAAC;SACxB;;CACF"}
1
+ {"version":3,"file":"bookings-calendar-v2-session-view.universal.js","sourceRoot":"","sources":["../../../src/bookings-calendar-v2-session-view.universal.ts"],"names":[],"mappings":"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"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wix/bookings",
3
- "version": "1.0.180",
3
+ "version": "1.0.181",
4
4
  "publishConfig": {
5
5
  "registry": "https://registry.npmjs.org/",
6
6
  "access": "public"
@@ -33,5 +33,5 @@
33
33
  "groupId": "com.wixpress.public-sdk-autogen"
34
34
  }
35
35
  },
36
- "falconPackageHash": "9ae47221f83ae471f439b6dc47416a048c17b53c1b61038f9cf583a0"
36
+ "falconPackageHash": "de23c7ee0520bd313524be526bec641794e2a47b015458c6f08c109d"
37
37
  }