@wix/auto_sdk_calendar_events 1.0.86 → 1.0.87

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.
Files changed (37) hide show
  1. package/build/cjs/index.d.ts +1 -1
  2. package/build/cjs/index.js +8 -8
  3. package/build/cjs/index.js.map +1 -1
  4. package/build/cjs/index.typings.d.ts +221 -186
  5. package/build/cjs/index.typings.js +8 -8
  6. package/build/cjs/index.typings.js.map +1 -1
  7. package/build/cjs/meta.d.ts +222 -187
  8. package/build/cjs/meta.js +8 -8
  9. package/build/cjs/meta.js.map +1 -1
  10. package/build/es/index.d.mts +1 -1
  11. package/build/es/index.mjs +8 -8
  12. package/build/es/index.mjs.map +1 -1
  13. package/build/es/index.typings.d.mts +221 -186
  14. package/build/es/index.typings.mjs +8 -8
  15. package/build/es/index.typings.mjs.map +1 -1
  16. package/build/es/meta.d.mts +222 -187
  17. package/build/es/meta.mjs +8 -8
  18. package/build/es/meta.mjs.map +1 -1
  19. package/build/internal/cjs/index.d.ts +1 -1
  20. package/build/internal/cjs/index.js +8 -8
  21. package/build/internal/cjs/index.js.map +1 -1
  22. package/build/internal/cjs/index.typings.d.ts +221 -186
  23. package/build/internal/cjs/index.typings.js +8 -8
  24. package/build/internal/cjs/index.typings.js.map +1 -1
  25. package/build/internal/cjs/meta.d.ts +222 -187
  26. package/build/internal/cjs/meta.js +8 -8
  27. package/build/internal/cjs/meta.js.map +1 -1
  28. package/build/internal/es/index.d.mts +1 -1
  29. package/build/internal/es/index.mjs +8 -8
  30. package/build/internal/es/index.mjs.map +1 -1
  31. package/build/internal/es/index.typings.d.mts +221 -186
  32. package/build/internal/es/index.typings.mjs +8 -8
  33. package/build/internal/es/index.typings.mjs.map +1 -1
  34. package/build/internal/es/meta.d.mts +222 -187
  35. package/build/internal/es/meta.mjs +8 -8
  36. package/build/internal/es/meta.mjs.map +1 -1
  37. package/package.json +2 -2
@@ -717,190 +717,6 @@ interface EventUpdatedWithMetadata {
717
717
  */
718
718
  participantNotification?: ParticipantNotification;
719
719
  }
720
- interface UpdateScheduleWithFixedBusinessResourceIdRequest {
721
- /** @format GUID */
722
- metaSiteId?: string;
723
- /** @format GUID */
724
- currentBusinessResourceId?: string;
725
- migrateBusinessConferenceId?: boolean;
726
- }
727
- interface UpdateScheduleWithFixedBusinessResourceIdResponse {
728
- }
729
- interface FixEventRecurrenceRuleRequest {
730
- /** @format GUID */
731
- metaSiteId?: string;
732
- /**
733
- * @minLength 36
734
- * @maxLength 250
735
- */
736
- eventId?: string;
737
- /** Optional: if provided, use this rule. If not, derive from event's instanceStart day of week. */
738
- recurrenceRule?: RecurrenceRule;
739
- }
740
- interface FixEventRecurrenceRuleResponse {
741
- }
742
- interface UpdateEventsWithFixedBusinessResourceIdRequest {
743
- /** @format GUID */
744
- metaSiteId?: string;
745
- /** @format GUID */
746
- currentBusinessResourceId?: string;
747
- migrateBusinessConferenceId?: boolean;
748
- }
749
- interface UpdateEventsWithFixedBusinessResourceIdResponse {
750
- }
751
- interface DomainEvent extends DomainEventBodyOneOf {
752
- createdEvent?: EntityCreatedEvent;
753
- updatedEvent?: EntityUpdatedEvent;
754
- deletedEvent?: EntityDeletedEvent;
755
- actionEvent?: ActionEvent;
756
- /** Event ID. With this ID you can easily spot duplicated events and ignore them. */
757
- _id?: string;
758
- /**
759
- * Fully Qualified Domain Name of an entity. This is a unique identifier assigned to the API main business entities.
760
- * For example, `wix.stores.catalog.product`, `wix.bookings.session`, `wix.payments.transaction`.
761
- */
762
- entityFqdn?: string;
763
- /**
764
- * Event action name, placed at the top level to make it easier for users to dispatch messages.
765
- * For example: `created`/`updated`/`deleted`/`started`/`completed`/`email_opened`.
766
- */
767
- slug?: string;
768
- /** ID of the entity associated with the event. */
769
- entityId?: string;
770
- /** Event timestamp in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601) format and UTC time. For example, `2020-04-26T13:57:50.699Z`. */
771
- eventTime?: Date | null;
772
- /**
773
- * Whether the event was triggered as a result of a privacy regulation application
774
- * (for example, GDPR).
775
- */
776
- triggeredByAnonymizeRequest?: boolean | null;
777
- /** If present, indicates the action that triggered the event. */
778
- originatedFrom?: string | null;
779
- /**
780
- * A sequence number that indicates the order of updates to an entity. For example, if an entity was updated at 16:00 and then again at 16:01, the second update will always have a higher sequence number.
781
- * You can use this number to make sure you're handling updates in the right order. Just save the latest sequence number on your end and compare it to the one in each new message. If the new message has an older (lower) number, you can safely ignore it.
782
- */
783
- entityEventSequence?: string | null;
784
- }
785
- /** @oneof */
786
- interface DomainEventBodyOneOf {
787
- createdEvent?: EntityCreatedEvent;
788
- updatedEvent?: EntityUpdatedEvent;
789
- deletedEvent?: EntityDeletedEvent;
790
- actionEvent?: ActionEvent;
791
- }
792
- interface EntityCreatedEvent {
793
- entity?: string;
794
- }
795
- interface RestoreInfo {
796
- deletedDate?: Date | null;
797
- }
798
- interface EntityUpdatedEvent {
799
- /**
800
- * Since platformized APIs only expose PATCH and not PUT we can't assume that the fields sent from the client are the actual diff.
801
- * This means that to generate a list of changed fields (as opposed to sent fields) one needs to traverse both objects.
802
- * We don't want to impose this on all developers and so we leave this traversal to the notification recipients which need it.
803
- */
804
- currentEntity?: string;
805
- }
806
- interface EntityDeletedEvent {
807
- /** Entity that was deleted. */
808
- deletedEntity?: string | null;
809
- }
810
- interface ActionEvent {
811
- body?: string;
812
- }
813
- interface MessageEnvelope {
814
- /**
815
- * App instance ID.
816
- * @format GUID
817
- */
818
- instanceId?: string | null;
819
- /**
820
- * Event type.
821
- * @maxLength 150
822
- */
823
- eventType?: string;
824
- /** The identification type and identity data. */
825
- identity?: IdentificationData;
826
- /** Stringify payload. */
827
- data?: string;
828
- /** Details related to the account */
829
- accountInfo?: AccountInfo;
830
- }
831
- interface IdentificationData extends IdentificationDataIdOneOf {
832
- /**
833
- * ID of a site visitor that has not logged in to the site.
834
- * @format GUID
835
- */
836
- anonymousVisitorId?: string;
837
- /**
838
- * ID of a site visitor that has logged in to the site.
839
- * @format GUID
840
- */
841
- memberId?: string;
842
- /**
843
- * ID of a Wix user (site owner, contributor, etc.).
844
- * @format GUID
845
- */
846
- wixUserId?: string;
847
- /**
848
- * ID of an app.
849
- * @format GUID
850
- */
851
- appId?: string;
852
- /** @readonly */
853
- identityType?: WebhookIdentityTypeWithLiterals;
854
- }
855
- /** @oneof */
856
- interface IdentificationDataIdOneOf {
857
- /**
858
- * ID of a site visitor that has not logged in to the site.
859
- * @format GUID
860
- */
861
- anonymousVisitorId?: string;
862
- /**
863
- * ID of a site visitor that has logged in to the site.
864
- * @format GUID
865
- */
866
- memberId?: string;
867
- /**
868
- * ID of a Wix user (site owner, contributor, etc.).
869
- * @format GUID
870
- */
871
- wixUserId?: string;
872
- /**
873
- * ID of an app.
874
- * @format GUID
875
- */
876
- appId?: string;
877
- }
878
- declare enum WebhookIdentityType {
879
- UNKNOWN = "UNKNOWN",
880
- ANONYMOUS_VISITOR = "ANONYMOUS_VISITOR",
881
- MEMBER = "MEMBER",
882
- WIX_USER = "WIX_USER",
883
- APP = "APP"
884
- }
885
- /** @enumType */
886
- type WebhookIdentityTypeWithLiterals = WebhookIdentityType | 'UNKNOWN' | 'ANONYMOUS_VISITOR' | 'MEMBER' | 'WIX_USER' | 'APP';
887
- interface AccountInfo {
888
- /**
889
- * ID of the Wix account associated with the event.
890
- * @format GUID
891
- */
892
- accountId?: string | null;
893
- /**
894
- * ID of the parent Wix account. Only included when accountId belongs to a child account.
895
- * @format GUID
896
- */
897
- parentAccountId?: string | null;
898
- /**
899
- * ID of the Wix site associated with the event. Only included when the event is tied to a specific site.
900
- * @format GUID
901
- */
902
- siteId?: string | null;
903
- }
904
720
  interface ListEventsByContactIdRequest {
905
721
  /**
906
722
  * ID of the [contact](https://dev.wix.com/docs/rest/crm/members-contacts/contacts/contacts/contact-v4/contact-object)
@@ -1373,6 +1189,225 @@ interface SiteCloned {
1373
1189
  }
1374
1190
  interface Empty {
1375
1191
  }
1192
+ interface DomainEvent extends DomainEventBodyOneOf {
1193
+ createdEvent?: EntityCreatedEvent;
1194
+ updatedEvent?: EntityUpdatedEvent;
1195
+ deletedEvent?: EntityDeletedEvent;
1196
+ actionEvent?: ActionEvent;
1197
+ /** Event ID. With this ID you can easily spot duplicated events and ignore them. */
1198
+ _id?: string;
1199
+ /**
1200
+ * Fully Qualified Domain Name of an entity. This is a unique identifier assigned to the API main business entities.
1201
+ * For example, `wix.stores.catalog.product`, `wix.bookings.session`, `wix.payments.transaction`.
1202
+ */
1203
+ entityFqdn?: string;
1204
+ /**
1205
+ * Event action name, placed at the top level to make it easier for users to dispatch messages.
1206
+ * For example: `created`/`updated`/`deleted`/`started`/`completed`/`email_opened`.
1207
+ */
1208
+ slug?: string;
1209
+ /** ID of the entity associated with the event. */
1210
+ entityId?: string;
1211
+ /** Event timestamp in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601) format and UTC time. For example, `2020-04-26T13:57:50.699Z`. */
1212
+ eventTime?: Date | null;
1213
+ /**
1214
+ * Whether the event was triggered as a result of a privacy regulation application
1215
+ * (for example, GDPR).
1216
+ */
1217
+ triggeredByAnonymizeRequest?: boolean | null;
1218
+ /** If present, indicates the action that triggered the event. */
1219
+ originatedFrom?: string | null;
1220
+ /**
1221
+ * A sequence number that indicates the order of updates to an entity. For example, if an entity was updated at `16:00` and then again at `16:01`, the second update will always have a higher sequence number.
1222
+ * You can use this number to make sure you're handling updates in the right order. Just save the latest sequence number on your end and compare it to the one in each new message. If the new message has an older (lower) number, you can safely ignore it.
1223
+ */
1224
+ entityEventSequence?: string | null;
1225
+ }
1226
+ /** @oneof */
1227
+ interface DomainEventBodyOneOf {
1228
+ createdEvent?: EntityCreatedEvent;
1229
+ updatedEvent?: EntityUpdatedEvent;
1230
+ deletedEvent?: EntityDeletedEvent;
1231
+ actionEvent?: ActionEvent;
1232
+ }
1233
+ interface EntityCreatedEvent {
1234
+ entity?: string;
1235
+ }
1236
+ interface RestoreInfo {
1237
+ deletedDate?: Date | null;
1238
+ }
1239
+ interface EntityUpdatedEvent {
1240
+ /**
1241
+ * Since platformized APIs only expose PATCH and not PUT we can't assume that the fields sent from the client are the actual diff.
1242
+ * This means that to generate a list of changed fields (as opposed to sent fields) one needs to traverse both objects.
1243
+ * We don't want to impose this on all developers and so we leave this traversal to the notification recipients which need it.
1244
+ */
1245
+ currentEntity?: string;
1246
+ }
1247
+ interface EntityDeletedEvent {
1248
+ /** Entity that was deleted. */
1249
+ deletedEntity?: string | null;
1250
+ }
1251
+ interface ActionEvent {
1252
+ body?: string;
1253
+ }
1254
+ interface MessageEnvelope {
1255
+ /**
1256
+ * App instance ID.
1257
+ * @format GUID
1258
+ */
1259
+ instanceId?: string | null;
1260
+ /**
1261
+ * Event type.
1262
+ * @maxLength 150
1263
+ */
1264
+ eventType?: string;
1265
+ /** The identification type and identity data. */
1266
+ identity?: IdentificationData;
1267
+ /** Stringify payload. */
1268
+ data?: string;
1269
+ /** Details related to the account */
1270
+ accountInfo?: AccountInfo;
1271
+ }
1272
+ interface IdentificationData extends IdentificationDataIdOneOf {
1273
+ /**
1274
+ * ID of a site visitor that has not logged in to the site.
1275
+ * @format GUID
1276
+ */
1277
+ anonymousVisitorId?: string;
1278
+ /**
1279
+ * ID of a site visitor that has logged in to the site.
1280
+ * @format GUID
1281
+ */
1282
+ memberId?: string;
1283
+ /**
1284
+ * ID of a Wix user (site owner, contributor, etc.).
1285
+ * @format GUID
1286
+ */
1287
+ wixUserId?: string;
1288
+ /**
1289
+ * ID of an app.
1290
+ * @format GUID
1291
+ */
1292
+ appId?: string;
1293
+ /** @readonly */
1294
+ identityType?: WebhookIdentityTypeWithLiterals;
1295
+ }
1296
+ /** @oneof */
1297
+ interface IdentificationDataIdOneOf {
1298
+ /**
1299
+ * ID of a site visitor that has not logged in to the site.
1300
+ * @format GUID
1301
+ */
1302
+ anonymousVisitorId?: string;
1303
+ /**
1304
+ * ID of a site visitor that has logged in to the site.
1305
+ * @format GUID
1306
+ */
1307
+ memberId?: string;
1308
+ /**
1309
+ * ID of a Wix user (site owner, contributor, etc.).
1310
+ * @format GUID
1311
+ */
1312
+ wixUserId?: string;
1313
+ /**
1314
+ * ID of an app.
1315
+ * @format GUID
1316
+ */
1317
+ appId?: string;
1318
+ }
1319
+ declare enum WebhookIdentityType {
1320
+ UNKNOWN = "UNKNOWN",
1321
+ ANONYMOUS_VISITOR = "ANONYMOUS_VISITOR",
1322
+ MEMBER = "MEMBER",
1323
+ WIX_USER = "WIX_USER",
1324
+ APP = "APP"
1325
+ }
1326
+ /** @enumType */
1327
+ type WebhookIdentityTypeWithLiterals = WebhookIdentityType | 'UNKNOWN' | 'ANONYMOUS_VISITOR' | 'MEMBER' | 'WIX_USER' | 'APP';
1328
+ interface AccountInfo {
1329
+ /**
1330
+ * ID of the Wix account associated with the event.
1331
+ * @format GUID
1332
+ */
1333
+ accountId?: string | null;
1334
+ /**
1335
+ * ID of the parent Wix account. Only included when accountId belongs to a child account.
1336
+ * @format GUID
1337
+ */
1338
+ parentAccountId?: string | null;
1339
+ /**
1340
+ * ID of the Wix site associated with the event. Only included when the event is tied to a specific site.
1341
+ * @format GUID
1342
+ */
1343
+ siteId?: string | null;
1344
+ }
1345
+ interface UpdateScheduleWithFixedBusinessResourceIdRequest {
1346
+ /** @format GUID */
1347
+ metaSiteId?: string;
1348
+ /** @format GUID */
1349
+ currentBusinessResourceId?: string;
1350
+ migrateBusinessConferenceId?: boolean;
1351
+ }
1352
+ interface UpdateScheduleWithFixedBusinessResourceIdResponse {
1353
+ }
1354
+ interface FixEventRecurrenceRuleRequest {
1355
+ /** @format GUID */
1356
+ metaSiteId?: string;
1357
+ /**
1358
+ * @minLength 36
1359
+ * @maxLength 250
1360
+ */
1361
+ eventId?: string;
1362
+ /** Optional: if provided, use this rule. If not, derive from event's instanceStart day of week. */
1363
+ recurrenceRule?: RecurrenceRule;
1364
+ }
1365
+ interface FixEventRecurrenceRuleResponse {
1366
+ }
1367
+ interface UpdateEventsWithFixedBusinessResourceIdRequest {
1368
+ /** @format GUID */
1369
+ metaSiteId?: string;
1370
+ /** @format GUID */
1371
+ currentBusinessResourceId?: string;
1372
+ migrateBusinessConferenceId?: boolean;
1373
+ }
1374
+ interface UpdateEventsWithFixedBusinessResourceIdResponse {
1375
+ }
1376
+ interface MigrateEventsTimezoneRequest {
1377
+ /**
1378
+ * Metasite whose events are swept.
1379
+ * @format GUID
1380
+ */
1381
+ metaSiteId?: string;
1382
+ /**
1383
+ * Target tz-rules version to migrate to, e.g. "2026c".
1384
+ * @maxLength 16
1385
+ */
1386
+ targetVersion?: string;
1387
+ /**
1388
+ * Only sweep events ending after this instant (bounds the scan, e.g. now or the zone's
1389
+ * divergence date). Omit for no lower bound.
1390
+ */
1391
+ fromDate?: Date | null;
1392
+ /**
1393
+ * Only sweep events starting at or before this instant. With from_date (which bounds by event
1394
+ * end) this selects events overlapping [from_date, to_date], letting a caller partition a site
1395
+ * into windows. Note: open-ended recurring masters (no until) have no end, so they fall in every
1396
+ * window at or after their first occurrence (re-migrating is an idempotent no-op). Omit for no
1397
+ * upper bound. Must not be before from_date.
1398
+ */
1399
+ toDate?: Date | null;
1400
+ }
1401
+ interface MigrateEventsTimezoneResponse {
1402
+ /** Number of stored events (masters + non-recurring) rewritten under target_version. */
1403
+ migratedCount?: number;
1404
+ /**
1405
+ * Number of stored events scanned by the sweep. Returned only on full success — if any event
1406
+ * fails the sweep continues but the RPC returns a non-OK status, so callers cannot mistake a
1407
+ * partial run for a complete one (re-run is idempotent).
1408
+ */
1409
+ scannedCount?: number;
1410
+ }
1376
1411
  interface GetEventRequest {
1377
1412
  /**
1378
1413
  * ID of the event to retrieve.
@@ -1965,7 +2000,7 @@ interface EventMetadata extends BaseEventMetadata {
1965
2000
  /** If present, indicates the action that triggered the event. */
1966
2001
  originatedFrom?: string | null;
1967
2002
  /**
1968
- * A sequence number that indicates the order of updates to an entity. For example, if an entity was updated at 16:00 and then again at 16:01, the second update will always have a higher sequence number.
2003
+ * A sequence number that indicates the order of updates to an entity. For example, if an entity was updated at `16:00` and then again at `16:01`, the second update will always have a higher sequence number.
1969
2004
  * You can use this number to make sure you're handling updates in the right order. Just save the latest sequence number on your end and compare it to the one in each new message. If the new message has an older (lower) number, you can safely ignore it.
1970
2005
  */
1971
2006
  entityEventSequence?: string | null;
@@ -3166,4 +3201,4 @@ interface BulkCancelEventOptions {
3166
3201
  timeZone?: string | null;
3167
3202
  }
3168
3203
 
3169
- export { type AccountInfo, type AccountInfoMetadata, type ActionEvent, type Address, type AddressHint, type ApplicationError, type BaseEventMetadata, type BulkActionMetadata, type BulkCancelEventApplicationErrors, type BulkCancelEventOptions, type BulkCancelEventRequest, type BulkCancelEventResponse, type BulkCreateEventOptions, type BulkCreateEventRequest, type BulkCreateEventResponse, type BulkEventResult, type BulkUpdateEventOptions, type BulkUpdateEventRequest, type BulkUpdateEventRequestMaskedEvent, type BulkUpdateEventResponse, type BusinessSchedule, type CancelEventApplicationErrors, type CancelEventOptions, type CancelEventRequest, type CancelEventResponse, type Categories, type ChangeContext, type ChangeContextPayloadOneOf, type CommonCursorPaging, type CommonCursorPagingMetadata, type CommonCursors, type CommonIdentificationData, type CommonIdentificationDataIdOneOf, type CommonQueryWithEntityContext, type ConferencingDetails, type ConsentPolicy, type CreateEventOptions, type CreateEventRequest, type CreateEventResponse, type CursorPaging, type CursorPagingMetadata, type CursorQuery, type CursorQueryPagingMethodOneOf, type Cursors, Day, DayOfWeek, type DayOfWeekWithLiterals, type DayWithLiterals, type DomainEvent, type DomainEventBodyOneOf, type Empty, type EntityCreatedEvent, type EntityDeletedEvent, type EntityUpdatedEvent, type Event, type EventCancelled, type EventCancelledEnvelope, type EventCreatedEnvelope, type EventMetadata, type EventQuery, type EventQuerySpec, type EventRecurringSplitEnvelope, type EventUpdatedEnvelope, type EventUpdatedWithMetadata, type EventsQueryBuilder, type EventsQueryResult, type ExtendedFields, Field, type FieldWithLiterals, type FixEventRecurrenceRuleRequest, type FixEventRecurrenceRuleResponse, Frequency, type FrequencyWithLiterals, type GeoCoordinates, type GetEventOptions, type GetEventRequest, type GetEventResponse, type IdentificationData, type IdentificationDataIdOneOf, IdentityType, type IdentityTypeWithLiterals, type ItemMetadata, type ListEventsByContactIdOptions, type ListEventsByContactIdRequest, type ListEventsByContactIdResponse, type ListEventsByMemberIdOptions, type ListEventsByMemberIdRequest, type ListEventsByMemberIdResponse, type ListEventsOptions, type ListEventsRequest, type ListEventsResponse, type ListRecurringEventInstancesHistoryRequest, type ListRecurringEventInstancesHistoryResponse, type Locale, type Location, LocationType, type LocationTypeWithLiterals, type MaskedEvent, type MessageEnvelope, type Multilingual, type OnlineMeetingInfo, type Participant, type ParticipantNotification, type Participants, ParticipantsStatus, type ParticipantsStatusWithLiterals, type Permission, PlacementType, type PlacementTypeWithLiterals, type Properties, type PropertiesChange, type Provider, type ProviderProviderInfoOneOf, ProviderType, type ProviderTypeWithLiterals, type QueryEventsOptions, type QueryEventsRequest, type QueryEventsResponse, type RecurrenceRule, RecurrenceType, type RecurrenceTypeWithLiterals, type RecurringEventSplit, RequestedFields, type RequestedFieldsWithLiterals, ResolutionMethod, type ResolutionMethodWithLiterals, type Resource, type RestoreEventDefaultsOptions, type RestoreEventDefaultsRequest, type RestoreEventDefaultsResponse, type RestoreInfo, Role, type RoleWithLiterals, type SiteCloned, type SiteCreated, type SitePropertiesEvent, type SitePropertiesNotification, SortOrder, type SortOrderWithLiterals, type Sorting, type SpecialHourPeriod, type SplitRecurringEventOptions, type SplitRecurringEventRequest, type SplitRecurringEventResponse, Status, type StatusWithLiterals, type SupportedLanguage, type TimePeriod, type Translation, Transparency, type TransparencyWithLiterals, Type, type TypeWithLiterals, type UpdateEvent, type UpdateEventOptions, type UpdateEventParticipantsRequest, type UpdateEventParticipantsResponse, type UpdateEventRequest, type UpdateEventResponse, type UpdateEventsWithFixedBusinessResourceIdRequest, type UpdateEventsWithFixedBusinessResourceIdResponse, type UpdateScheduleWithFixedBusinessResourceIdRequest, type UpdateScheduleWithFixedBusinessResourceIdResponse, WebhookIdentityType, type WebhookIdentityTypeWithLiterals, type ZonedDate, bulkCancelEvent, bulkCreateEvent, bulkUpdateEvent, cancelEvent, createEvent, getEvent, listEvents, listEventsByContactId, listEventsByMemberId, onEventCancelled, onEventCreated, onEventRecurringSplit, onEventUpdated, queryEvents, restoreEventDefaults, splitRecurringEvent, typedQueryEvents, updateEvent, utils };
3204
+ export { type AccountInfo, type AccountInfoMetadata, type ActionEvent, type Address, type AddressHint, type ApplicationError, type BaseEventMetadata, type BulkActionMetadata, type BulkCancelEventApplicationErrors, type BulkCancelEventOptions, type BulkCancelEventRequest, type BulkCancelEventResponse, type BulkCreateEventOptions, type BulkCreateEventRequest, type BulkCreateEventResponse, type BulkEventResult, type BulkUpdateEventOptions, type BulkUpdateEventRequest, type BulkUpdateEventRequestMaskedEvent, type BulkUpdateEventResponse, type BusinessSchedule, type CancelEventApplicationErrors, type CancelEventOptions, type CancelEventRequest, type CancelEventResponse, type Categories, type ChangeContext, type ChangeContextPayloadOneOf, type CommonCursorPaging, type CommonCursorPagingMetadata, type CommonCursors, type CommonIdentificationData, type CommonIdentificationDataIdOneOf, type CommonQueryWithEntityContext, type ConferencingDetails, type ConsentPolicy, type CreateEventOptions, type CreateEventRequest, type CreateEventResponse, type CursorPaging, type CursorPagingMetadata, type CursorQuery, type CursorQueryPagingMethodOneOf, type Cursors, Day, DayOfWeek, type DayOfWeekWithLiterals, type DayWithLiterals, type DomainEvent, type DomainEventBodyOneOf, type Empty, type EntityCreatedEvent, type EntityDeletedEvent, type EntityUpdatedEvent, type Event, type EventCancelled, type EventCancelledEnvelope, type EventCreatedEnvelope, type EventMetadata, type EventQuery, type EventQuerySpec, type EventRecurringSplitEnvelope, type EventUpdatedEnvelope, type EventUpdatedWithMetadata, type EventsQueryBuilder, type EventsQueryResult, type ExtendedFields, Field, type FieldWithLiterals, type FixEventRecurrenceRuleRequest, type FixEventRecurrenceRuleResponse, Frequency, type FrequencyWithLiterals, type GeoCoordinates, type GetEventOptions, type GetEventRequest, type GetEventResponse, type IdentificationData, type IdentificationDataIdOneOf, IdentityType, type IdentityTypeWithLiterals, type ItemMetadata, type ListEventsByContactIdOptions, type ListEventsByContactIdRequest, type ListEventsByContactIdResponse, type ListEventsByMemberIdOptions, type ListEventsByMemberIdRequest, type ListEventsByMemberIdResponse, type ListEventsOptions, type ListEventsRequest, type ListEventsResponse, type ListRecurringEventInstancesHistoryRequest, type ListRecurringEventInstancesHistoryResponse, type Locale, type Location, LocationType, type LocationTypeWithLiterals, type MaskedEvent, type MessageEnvelope, type MigrateEventsTimezoneRequest, type MigrateEventsTimezoneResponse, type Multilingual, type OnlineMeetingInfo, type Participant, type ParticipantNotification, type Participants, ParticipantsStatus, type ParticipantsStatusWithLiterals, type Permission, PlacementType, type PlacementTypeWithLiterals, type Properties, type PropertiesChange, type Provider, type ProviderProviderInfoOneOf, ProviderType, type ProviderTypeWithLiterals, type QueryEventsOptions, type QueryEventsRequest, type QueryEventsResponse, type RecurrenceRule, RecurrenceType, type RecurrenceTypeWithLiterals, type RecurringEventSplit, RequestedFields, type RequestedFieldsWithLiterals, ResolutionMethod, type ResolutionMethodWithLiterals, type Resource, type RestoreEventDefaultsOptions, type RestoreEventDefaultsRequest, type RestoreEventDefaultsResponse, type RestoreInfo, Role, type RoleWithLiterals, type SiteCloned, type SiteCreated, type SitePropertiesEvent, type SitePropertiesNotification, SortOrder, type SortOrderWithLiterals, type Sorting, type SpecialHourPeriod, type SplitRecurringEventOptions, type SplitRecurringEventRequest, type SplitRecurringEventResponse, Status, type StatusWithLiterals, type SupportedLanguage, type TimePeriod, type Translation, Transparency, type TransparencyWithLiterals, Type, type TypeWithLiterals, type UpdateEvent, type UpdateEventOptions, type UpdateEventParticipantsRequest, type UpdateEventParticipantsResponse, type UpdateEventRequest, type UpdateEventResponse, type UpdateEventsWithFixedBusinessResourceIdRequest, type UpdateEventsWithFixedBusinessResourceIdResponse, type UpdateScheduleWithFixedBusinessResourceIdRequest, type UpdateScheduleWithFixedBusinessResourceIdResponse, WebhookIdentityType, type WebhookIdentityTypeWithLiterals, type ZonedDate, bulkCancelEvent, bulkCreateEvent, bulkUpdateEvent, cancelEvent, createEvent, getEvent, listEvents, listEventsByContactId, listEventsByMemberId, onEventCancelled, onEventCreated, onEventRecurringSplit, onEventUpdated, queryEvents, restoreEventDefaults, splitRecurringEvent, typedQueryEvents, updateEvent, utils };
@@ -795,14 +795,6 @@ var IdentityType = /* @__PURE__ */ ((IdentityType2) => {
795
795
  IdentityType2["WIX_USER"] = "WIX_USER";
796
796
  return IdentityType2;
797
797
  })(IdentityType || {});
798
- var WebhookIdentityType = /* @__PURE__ */ ((WebhookIdentityType2) => {
799
- WebhookIdentityType2["UNKNOWN"] = "UNKNOWN";
800
- WebhookIdentityType2["ANONYMOUS_VISITOR"] = "ANONYMOUS_VISITOR";
801
- WebhookIdentityType2["MEMBER"] = "MEMBER";
802
- WebhookIdentityType2["WIX_USER"] = "WIX_USER";
803
- WebhookIdentityType2["APP"] = "APP";
804
- return WebhookIdentityType2;
805
- })(WebhookIdentityType || {});
806
798
  var SortOrder = /* @__PURE__ */ ((SortOrder2) => {
807
799
  SortOrder2["ASC"] = "ASC";
808
800
  SortOrder2["DESC"] = "DESC";
@@ -830,6 +822,14 @@ var ResolutionMethod = /* @__PURE__ */ ((ResolutionMethod2) => {
830
822
  ResolutionMethod2["SUBDIRECTORY"] = "SUBDIRECTORY";
831
823
  return ResolutionMethod2;
832
824
  })(ResolutionMethod || {});
825
+ var WebhookIdentityType = /* @__PURE__ */ ((WebhookIdentityType2) => {
826
+ WebhookIdentityType2["UNKNOWN"] = "UNKNOWN";
827
+ WebhookIdentityType2["ANONYMOUS_VISITOR"] = "ANONYMOUS_VISITOR";
828
+ WebhookIdentityType2["MEMBER"] = "MEMBER";
829
+ WebhookIdentityType2["WIX_USER"] = "WIX_USER";
830
+ WebhookIdentityType2["APP"] = "APP";
831
+ return WebhookIdentityType2;
832
+ })(WebhookIdentityType || {});
833
833
  var RequestedFields = /* @__PURE__ */ ((RequestedFields2) => {
834
834
  RequestedFields2["PI_FIELDS"] = "PI_FIELDS";
835
835
  RequestedFields2["OWN_PI_FIELDS"] = "OWN_PI_FIELDS";