@wix/auto_sdk_calendar_events 1.0.31 → 1.0.32
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/build/{calendar-v3-event-events.universal-oZbWDSxX.d.mts → cjs/calendar-v3-event-events.universal-CLDnUCNu.d.ts} +153 -153
- package/build/{internal → cjs}/index.d.ts +2 -2
- package/build/{internal → cjs}/index.js +8 -8
- package/build/cjs/index.js.map +1 -0
- package/build/{internal → cjs}/meta.d.ts +1 -1
- package/build/{calendar-v3-event-events.universal-oZbWDSxX.d.ts → es/calendar-v3-event-events.universal-CLDnUCNu.d.mts} +153 -153
- package/build/{internal → es}/index.d.mts +2 -2
- package/build/{index.mjs → es/index.mjs} +8 -8
- package/build/es/index.mjs.map +1 -0
- package/build/{internal → es}/meta.d.mts +1 -1
- package/build/es/package.json +3 -0
- package/build/internal/{calendar-v3-event-events.universal-oZbWDSxX.d.ts → cjs/calendar-v3-event-events.universal-CLDnUCNu.d.ts} +153 -153
- package/build/{index.d.ts → internal/cjs/index.d.ts} +2 -2
- package/build/{index.js → internal/cjs/index.js} +8 -8
- package/build/internal/cjs/index.js.map +1 -0
- package/build/{meta.d.ts → internal/cjs/meta.d.ts} +1 -1
- package/build/internal/cjs/meta.js.map +1 -0
- package/build/internal/{calendar-v3-event-events.universal-oZbWDSxX.d.mts → es/calendar-v3-event-events.universal-CLDnUCNu.d.mts} +153 -153
- package/build/{index.d.mts → internal/es/index.d.mts} +2 -2
- package/build/internal/{index.mjs → es/index.mjs} +8 -8
- package/build/internal/es/index.mjs.map +1 -0
- package/build/{meta.d.mts → internal/es/meta.d.mts} +1 -1
- package/build/internal/es/meta.mjs.map +1 -0
- package/package.json +10 -10
- package/build/index.js.map +0 -1
- package/build/index.mjs.map +0 -1
- package/build/internal/index.js.map +0 -1
- package/build/internal/index.mjs.map +0 -1
- package/build/meta.js.map +0 -1
- package/build/meta.mjs.map +0 -1
- /package/build/{internal → cjs}/meta.js +0 -0
- /package/build/{internal → cjs}/meta.js.map +0 -0
- /package/build/{internal → es}/meta.mjs +0 -0
- /package/build/{internal → es}/meta.mjs.map +0 -0
- /package/build/{meta.js → internal/cjs/meta.js} +0 -0
- /package/build/{meta.mjs → internal/es/meta.mjs} +0 -0
|
@@ -669,6 +669,158 @@ interface EventUpdatedWithMetadata {
|
|
|
669
669
|
*/
|
|
670
670
|
participantNotification?: ParticipantNotification;
|
|
671
671
|
}
|
|
672
|
+
interface UpdateScheduleWithFixedBusinessResourceIdRequest {
|
|
673
|
+
/** @format GUID */
|
|
674
|
+
metaSiteId?: string;
|
|
675
|
+
/** @format GUID */
|
|
676
|
+
currentBusinessResourceId?: string;
|
|
677
|
+
migrateBusinessConferenceId?: boolean;
|
|
678
|
+
}
|
|
679
|
+
interface UpdateScheduleWithFixedBusinessResourceIdResponse {
|
|
680
|
+
}
|
|
681
|
+
interface UpdateEventsWithFixedBusinessResourceIdRequest {
|
|
682
|
+
/** @format GUID */
|
|
683
|
+
metaSiteId?: string;
|
|
684
|
+
/** @format GUID */
|
|
685
|
+
currentBusinessResourceId?: string;
|
|
686
|
+
migrateBusinessConferenceId?: boolean;
|
|
687
|
+
}
|
|
688
|
+
interface UpdateEventsWithFixedBusinessResourceIdResponse {
|
|
689
|
+
}
|
|
690
|
+
interface DomainEvent extends DomainEventBodyOneOf {
|
|
691
|
+
createdEvent?: EntityCreatedEvent;
|
|
692
|
+
updatedEvent?: EntityUpdatedEvent;
|
|
693
|
+
deletedEvent?: EntityDeletedEvent;
|
|
694
|
+
actionEvent?: ActionEvent;
|
|
695
|
+
/** Event ID. With this ID you can easily spot duplicated events and ignore them. */
|
|
696
|
+
_id?: string;
|
|
697
|
+
/**
|
|
698
|
+
* Fully Qualified Domain Name of an entity. This is a unique identifier assigned to the API main business entities.
|
|
699
|
+
* For example, `wix.stores.catalog.product`, `wix.bookings.session`, `wix.payments.transaction`.
|
|
700
|
+
*/
|
|
701
|
+
entityFqdn?: string;
|
|
702
|
+
/**
|
|
703
|
+
* Event action name, placed at the top level to make it easier for users to dispatch messages.
|
|
704
|
+
* For example: `created`/`updated`/`deleted`/`started`/`completed`/`email_opened`.
|
|
705
|
+
*/
|
|
706
|
+
slug?: string;
|
|
707
|
+
/** ID of the entity associated with the event. */
|
|
708
|
+
entityId?: string;
|
|
709
|
+
/** Event timestamp in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601) format and UTC time. For example, `2020-04-26T13:57:50.699Z`. */
|
|
710
|
+
eventTime?: Date | null;
|
|
711
|
+
/**
|
|
712
|
+
* Whether the event was triggered as a result of a privacy regulation application
|
|
713
|
+
* (for example, GDPR).
|
|
714
|
+
*/
|
|
715
|
+
triggeredByAnonymizeRequest?: boolean | null;
|
|
716
|
+
/** If present, indicates the action that triggered the event. */
|
|
717
|
+
originatedFrom?: string | null;
|
|
718
|
+
/**
|
|
719
|
+
* 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.
|
|
720
|
+
* 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.
|
|
721
|
+
*/
|
|
722
|
+
entityEventSequence?: string | null;
|
|
723
|
+
}
|
|
724
|
+
/** @oneof */
|
|
725
|
+
interface DomainEventBodyOneOf {
|
|
726
|
+
createdEvent?: EntityCreatedEvent;
|
|
727
|
+
updatedEvent?: EntityUpdatedEvent;
|
|
728
|
+
deletedEvent?: EntityDeletedEvent;
|
|
729
|
+
actionEvent?: ActionEvent;
|
|
730
|
+
}
|
|
731
|
+
interface EntityCreatedEvent {
|
|
732
|
+
entity?: string;
|
|
733
|
+
}
|
|
734
|
+
interface RestoreInfo {
|
|
735
|
+
deletedDate?: Date | null;
|
|
736
|
+
}
|
|
737
|
+
interface EntityUpdatedEvent {
|
|
738
|
+
/**
|
|
739
|
+
* Since platformized APIs only expose PATCH and not PUT we can't assume that the fields sent from the client are the actual diff.
|
|
740
|
+
* This means that to generate a list of changed fields (as opposed to sent fields) one needs to traverse both objects.
|
|
741
|
+
* We don't want to impose this on all developers and so we leave this traversal to the notification recipients which need it.
|
|
742
|
+
*/
|
|
743
|
+
currentEntity?: string;
|
|
744
|
+
}
|
|
745
|
+
interface EntityDeletedEvent {
|
|
746
|
+
/** Entity that was deleted. */
|
|
747
|
+
deletedEntity?: string | null;
|
|
748
|
+
}
|
|
749
|
+
interface ActionEvent {
|
|
750
|
+
body?: string;
|
|
751
|
+
}
|
|
752
|
+
interface MessageEnvelope {
|
|
753
|
+
/**
|
|
754
|
+
* App instance ID.
|
|
755
|
+
* @format GUID
|
|
756
|
+
*/
|
|
757
|
+
instanceId?: string | null;
|
|
758
|
+
/**
|
|
759
|
+
* Event type.
|
|
760
|
+
* @maxLength 150
|
|
761
|
+
*/
|
|
762
|
+
eventType?: string;
|
|
763
|
+
/** The identification type and identity data. */
|
|
764
|
+
identity?: IdentificationData;
|
|
765
|
+
/** Stringify payload. */
|
|
766
|
+
data?: string;
|
|
767
|
+
}
|
|
768
|
+
interface IdentificationData extends IdentificationDataIdOneOf {
|
|
769
|
+
/**
|
|
770
|
+
* ID of a site visitor that has not logged in to the site.
|
|
771
|
+
* @format GUID
|
|
772
|
+
*/
|
|
773
|
+
anonymousVisitorId?: string;
|
|
774
|
+
/**
|
|
775
|
+
* ID of a site visitor that has logged in to the site.
|
|
776
|
+
* @format GUID
|
|
777
|
+
*/
|
|
778
|
+
memberId?: string;
|
|
779
|
+
/**
|
|
780
|
+
* ID of a Wix user (site owner, contributor, etc.).
|
|
781
|
+
* @format GUID
|
|
782
|
+
*/
|
|
783
|
+
wixUserId?: string;
|
|
784
|
+
/**
|
|
785
|
+
* ID of an app.
|
|
786
|
+
* @format GUID
|
|
787
|
+
*/
|
|
788
|
+
appId?: string;
|
|
789
|
+
/** @readonly */
|
|
790
|
+
identityType?: WebhookIdentityTypeWithLiterals;
|
|
791
|
+
}
|
|
792
|
+
/** @oneof */
|
|
793
|
+
interface IdentificationDataIdOneOf {
|
|
794
|
+
/**
|
|
795
|
+
* ID of a site visitor that has not logged in to the site.
|
|
796
|
+
* @format GUID
|
|
797
|
+
*/
|
|
798
|
+
anonymousVisitorId?: string;
|
|
799
|
+
/**
|
|
800
|
+
* ID of a site visitor that has logged in to the site.
|
|
801
|
+
* @format GUID
|
|
802
|
+
*/
|
|
803
|
+
memberId?: string;
|
|
804
|
+
/**
|
|
805
|
+
* ID of a Wix user (site owner, contributor, etc.).
|
|
806
|
+
* @format GUID
|
|
807
|
+
*/
|
|
808
|
+
wixUserId?: string;
|
|
809
|
+
/**
|
|
810
|
+
* ID of an app.
|
|
811
|
+
* @format GUID
|
|
812
|
+
*/
|
|
813
|
+
appId?: string;
|
|
814
|
+
}
|
|
815
|
+
declare enum WebhookIdentityType {
|
|
816
|
+
UNKNOWN = "UNKNOWN",
|
|
817
|
+
ANONYMOUS_VISITOR = "ANONYMOUS_VISITOR",
|
|
818
|
+
MEMBER = "MEMBER",
|
|
819
|
+
WIX_USER = "WIX_USER",
|
|
820
|
+
APP = "APP"
|
|
821
|
+
}
|
|
822
|
+
/** @enumType */
|
|
823
|
+
type WebhookIdentityTypeWithLiterals = WebhookIdentityType | 'UNKNOWN' | 'ANONYMOUS_VISITOR' | 'MEMBER' | 'WIX_USER' | 'APP';
|
|
672
824
|
interface ListEventsByContactIdRequest {
|
|
673
825
|
/**
|
|
674
826
|
* ID of the [contact](https://dev.wix.com/docs/rest/crm/members-contacts/contacts/contacts/contact-v4/contact-object)
|
|
@@ -1109,158 +1261,6 @@ interface SiteCloned {
|
|
|
1109
1261
|
}
|
|
1110
1262
|
interface Empty {
|
|
1111
1263
|
}
|
|
1112
|
-
interface DomainEvent extends DomainEventBodyOneOf {
|
|
1113
|
-
createdEvent?: EntityCreatedEvent;
|
|
1114
|
-
updatedEvent?: EntityUpdatedEvent;
|
|
1115
|
-
deletedEvent?: EntityDeletedEvent;
|
|
1116
|
-
actionEvent?: ActionEvent;
|
|
1117
|
-
/** Event ID. With this ID you can easily spot duplicated events and ignore them. */
|
|
1118
|
-
_id?: string;
|
|
1119
|
-
/**
|
|
1120
|
-
* Fully Qualified Domain Name of an entity. This is a unique identifier assigned to the API main business entities.
|
|
1121
|
-
* For example, `wix.stores.catalog.product`, `wix.bookings.session`, `wix.payments.transaction`.
|
|
1122
|
-
*/
|
|
1123
|
-
entityFqdn?: string;
|
|
1124
|
-
/**
|
|
1125
|
-
* Event action name, placed at the top level to make it easier for users to dispatch messages.
|
|
1126
|
-
* For example: `created`/`updated`/`deleted`/`started`/`completed`/`email_opened`.
|
|
1127
|
-
*/
|
|
1128
|
-
slug?: string;
|
|
1129
|
-
/** ID of the entity associated with the event. */
|
|
1130
|
-
entityId?: string;
|
|
1131
|
-
/** Event timestamp in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601) format and UTC time. For example, `2020-04-26T13:57:50.699Z`. */
|
|
1132
|
-
eventTime?: Date | null;
|
|
1133
|
-
/**
|
|
1134
|
-
* Whether the event was triggered as a result of a privacy regulation application
|
|
1135
|
-
* (for example, GDPR).
|
|
1136
|
-
*/
|
|
1137
|
-
triggeredByAnonymizeRequest?: boolean | null;
|
|
1138
|
-
/** If present, indicates the action that triggered the event. */
|
|
1139
|
-
originatedFrom?: string | null;
|
|
1140
|
-
/**
|
|
1141
|
-
* 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.
|
|
1142
|
-
* 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.
|
|
1143
|
-
*/
|
|
1144
|
-
entityEventSequence?: string | null;
|
|
1145
|
-
}
|
|
1146
|
-
/** @oneof */
|
|
1147
|
-
interface DomainEventBodyOneOf {
|
|
1148
|
-
createdEvent?: EntityCreatedEvent;
|
|
1149
|
-
updatedEvent?: EntityUpdatedEvent;
|
|
1150
|
-
deletedEvent?: EntityDeletedEvent;
|
|
1151
|
-
actionEvent?: ActionEvent;
|
|
1152
|
-
}
|
|
1153
|
-
interface EntityCreatedEvent {
|
|
1154
|
-
entity?: string;
|
|
1155
|
-
}
|
|
1156
|
-
interface RestoreInfo {
|
|
1157
|
-
deletedDate?: Date | null;
|
|
1158
|
-
}
|
|
1159
|
-
interface EntityUpdatedEvent {
|
|
1160
|
-
/**
|
|
1161
|
-
* Since platformized APIs only expose PATCH and not PUT we can't assume that the fields sent from the client are the actual diff.
|
|
1162
|
-
* This means that to generate a list of changed fields (as opposed to sent fields) one needs to traverse both objects.
|
|
1163
|
-
* We don't want to impose this on all developers and so we leave this traversal to the notification recipients which need it.
|
|
1164
|
-
*/
|
|
1165
|
-
currentEntity?: string;
|
|
1166
|
-
}
|
|
1167
|
-
interface EntityDeletedEvent {
|
|
1168
|
-
/** Entity that was deleted. */
|
|
1169
|
-
deletedEntity?: string | null;
|
|
1170
|
-
}
|
|
1171
|
-
interface ActionEvent {
|
|
1172
|
-
body?: string;
|
|
1173
|
-
}
|
|
1174
|
-
interface MessageEnvelope {
|
|
1175
|
-
/**
|
|
1176
|
-
* App instance ID.
|
|
1177
|
-
* @format GUID
|
|
1178
|
-
*/
|
|
1179
|
-
instanceId?: string | null;
|
|
1180
|
-
/**
|
|
1181
|
-
* Event type.
|
|
1182
|
-
* @maxLength 150
|
|
1183
|
-
*/
|
|
1184
|
-
eventType?: string;
|
|
1185
|
-
/** The identification type and identity data. */
|
|
1186
|
-
identity?: IdentificationData;
|
|
1187
|
-
/** Stringify payload. */
|
|
1188
|
-
data?: string;
|
|
1189
|
-
}
|
|
1190
|
-
interface IdentificationData extends IdentificationDataIdOneOf {
|
|
1191
|
-
/**
|
|
1192
|
-
* ID of a site visitor that has not logged in to the site.
|
|
1193
|
-
* @format GUID
|
|
1194
|
-
*/
|
|
1195
|
-
anonymousVisitorId?: string;
|
|
1196
|
-
/**
|
|
1197
|
-
* ID of a site visitor that has logged in to the site.
|
|
1198
|
-
* @format GUID
|
|
1199
|
-
*/
|
|
1200
|
-
memberId?: string;
|
|
1201
|
-
/**
|
|
1202
|
-
* ID of a Wix user (site owner, contributor, etc.).
|
|
1203
|
-
* @format GUID
|
|
1204
|
-
*/
|
|
1205
|
-
wixUserId?: string;
|
|
1206
|
-
/**
|
|
1207
|
-
* ID of an app.
|
|
1208
|
-
* @format GUID
|
|
1209
|
-
*/
|
|
1210
|
-
appId?: string;
|
|
1211
|
-
/** @readonly */
|
|
1212
|
-
identityType?: WebhookIdentityTypeWithLiterals;
|
|
1213
|
-
}
|
|
1214
|
-
/** @oneof */
|
|
1215
|
-
interface IdentificationDataIdOneOf {
|
|
1216
|
-
/**
|
|
1217
|
-
* ID of a site visitor that has not logged in to the site.
|
|
1218
|
-
* @format GUID
|
|
1219
|
-
*/
|
|
1220
|
-
anonymousVisitorId?: string;
|
|
1221
|
-
/**
|
|
1222
|
-
* ID of a site visitor that has logged in to the site.
|
|
1223
|
-
* @format GUID
|
|
1224
|
-
*/
|
|
1225
|
-
memberId?: string;
|
|
1226
|
-
/**
|
|
1227
|
-
* ID of a Wix user (site owner, contributor, etc.).
|
|
1228
|
-
* @format GUID
|
|
1229
|
-
*/
|
|
1230
|
-
wixUserId?: string;
|
|
1231
|
-
/**
|
|
1232
|
-
* ID of an app.
|
|
1233
|
-
* @format GUID
|
|
1234
|
-
*/
|
|
1235
|
-
appId?: string;
|
|
1236
|
-
}
|
|
1237
|
-
declare enum WebhookIdentityType {
|
|
1238
|
-
UNKNOWN = "UNKNOWN",
|
|
1239
|
-
ANONYMOUS_VISITOR = "ANONYMOUS_VISITOR",
|
|
1240
|
-
MEMBER = "MEMBER",
|
|
1241
|
-
WIX_USER = "WIX_USER",
|
|
1242
|
-
APP = "APP"
|
|
1243
|
-
}
|
|
1244
|
-
/** @enumType */
|
|
1245
|
-
type WebhookIdentityTypeWithLiterals = WebhookIdentityType | 'UNKNOWN' | 'ANONYMOUS_VISITOR' | 'MEMBER' | 'WIX_USER' | 'APP';
|
|
1246
|
-
interface UpdateScheduleWithFixedBusinessResourceIdRequest {
|
|
1247
|
-
/** @format GUID */
|
|
1248
|
-
metaSiteId?: string;
|
|
1249
|
-
/** @format GUID */
|
|
1250
|
-
currentBusinessResourceId?: string;
|
|
1251
|
-
migrateBusinessConferenceId?: boolean;
|
|
1252
|
-
}
|
|
1253
|
-
interface UpdateScheduleWithFixedBusinessResourceIdResponse {
|
|
1254
|
-
}
|
|
1255
|
-
interface UpdateEventsWithFixedBusinessResourceIdRequest {
|
|
1256
|
-
/** @format GUID */
|
|
1257
|
-
metaSiteId?: string;
|
|
1258
|
-
/** @format GUID */
|
|
1259
|
-
currentBusinessResourceId?: string;
|
|
1260
|
-
migrateBusinessConferenceId?: boolean;
|
|
1261
|
-
}
|
|
1262
|
-
interface UpdateEventsWithFixedBusinessResourceIdResponse {
|
|
1263
|
-
}
|
|
1264
1264
|
interface GetEventRequest {
|
|
1265
1265
|
/**
|
|
1266
1266
|
* ID of the event to retrieve.
|
|
@@ -2486,4 +2486,4 @@ interface BulkCancelEventOptions {
|
|
|
2486
2486
|
timeZone?: string | null;
|
|
2487
2487
|
}
|
|
2488
2488
|
|
|
2489
|
-
export { type Participants as $, Type as A, type BulkCreateEventOptions as B, type CreateEventOptions as C, Day as D, type Event as E, type FieldWithLiterals as F, type GetEventOptions as G, Field as H, IdentityType as I, PlacementType as J, DayOfWeek as K, type ListEventsByContactIdOptions as L, type MaskedEvent as M, ResolutionMethod as N, RequestedFields as O, ParticipantsStatus as P, type QueryEventsOptions as Q, type RestoreEventDefaultsOptions as R, type SplitRecurringEventOptions as S, Transparency as T, type UpdateEvent as U, SortOrder as V, WebhookIdentityType as W, type RecurrenceRule as X, type Location as Y, type ZonedDate as Z, type Resource as _, type ListEventsByContactIdResponse as a, type CreateEventRequest as a$, type Participant as a0, type ConferencingDetails as a1, type Permission as a2, type CommonIdentificationData as a3, type CommonIdentificationDataIdOneOf as a4, type ExtendedFields as a5, type RecurringEventSplit as a6, type EventCancelled as a7, type ParticipantNotification as a8, type EventUpdatedWithMetadata as a9, type
|
|
2489
|
+
export { type Participants as $, Type as A, type BulkCreateEventOptions as B, type CreateEventOptions as C, Day as D, type Event as E, type FieldWithLiterals as F, type GetEventOptions as G, Field as H, IdentityType as I, PlacementType as J, DayOfWeek as K, type ListEventsByContactIdOptions as L, type MaskedEvent as M, ResolutionMethod as N, RequestedFields as O, ParticipantsStatus as P, type QueryEventsOptions as Q, type RestoreEventDefaultsOptions as R, type SplitRecurringEventOptions as S, Transparency as T, type UpdateEvent as U, SortOrder as V, WebhookIdentityType as W, type RecurrenceRule as X, type Location as Y, type ZonedDate as Z, type Resource as _, type ListEventsByContactIdResponse as a, type CreateEventRequest as a$, type Participant as a0, type ConferencingDetails as a1, type Permission as a2, type CommonIdentificationData as a3, type CommonIdentificationDataIdOneOf as a4, type ExtendedFields as a5, type RecurringEventSplit as a6, type EventCancelled as a7, type ParticipantNotification as a8, type EventUpdatedWithMetadata as a9, type GeoCoordinates as aA, type BusinessSchedule as aB, type TimePeriod as aC, type SpecialHourPeriod as aD, type Multilingual as aE, type SupportedLanguage as aF, type ConsentPolicy as aG, type Translation as aH, type ChangeContext as aI, type ChangeContextPayloadOneOf as aJ, type PropertiesChange as aK, type SiteCreated as aL, type SiteCloned as aM, type Empty as aN, type GetEventRequest as aO, type GetEventResponse as aP, type ListEventsRequest as aQ, type QueryEventsRequest as aR, type CursorQuery as aS, type CursorQueryPagingMethodOneOf as aT, type Sorting as aU, type CursorPaging as aV, type QueryEventsResponse as aW, type CursorPagingMetadata as aX, type Cursors as aY, type ListRecurringEventInstancesHistoryRequest as aZ, type ListRecurringEventInstancesHistoryResponse as a_, type UpdateScheduleWithFixedBusinessResourceIdRequest as aa, type UpdateScheduleWithFixedBusinessResourceIdResponse as ab, type UpdateEventsWithFixedBusinessResourceIdRequest as ac, type UpdateEventsWithFixedBusinessResourceIdResponse as ad, type DomainEvent as ae, type DomainEventBodyOneOf as af, type EntityCreatedEvent as ag, type RestoreInfo as ah, type EntityUpdatedEvent as ai, type EntityDeletedEvent as aj, type ActionEvent as ak, type MessageEnvelope as al, type IdentificationData as am, type IdentificationDataIdOneOf as an, type ListEventsByContactIdRequest as ao, type CommonCursorPaging as ap, type CommonCursorPagingMetadata as aq, type CommonCursors as ar, type ListEventsByMemberIdRequest as as, type SitePropertiesNotification as at, type SitePropertiesEvent as au, type Properties as av, type Categories as aw, type Locale as ax, type Address as ay, type AddressHint as az, type ListEventsByMemberIdOptions as b, type CreateEventResponse as b0, type BulkCreateEventRequest as b1, type BulkEventResult as b2, type ItemMetadata as b3, type ApplicationError as b4, type BulkActionMetadata as b5, type UpdateEventRequest as b6, type UpdateEventResponse as b7, type BulkUpdateEventRequest as b8, type UpdateEventParticipantsRequest as b9, type UpdateEventParticipantsResponse as ba, type RestoreEventDefaultsRequest as bb, type SplitRecurringEventRequest as bc, type CancelEventRequest as bd, type BulkCancelEventRequest as be, type BaseEventMetadata as bf, type EventMetadata as bg, type EventsQueryResult as bh, type ListEventsByMemberIdResponse as c, type ListEventsOptions as d, type ListEventsResponse as e, type EventsQueryBuilder as f, type BulkCreateEventResponse as g, type UpdateEventOptions as h, type BulkUpdateEventRequestMaskedEvent as i, type BulkUpdateEventOptions as j, type BulkUpdateEventResponse as k, type RestoreEventDefaultsResponse as l, type SplitRecurringEventResponse as m, type CancelEventOptions as n, type CancelEventResponse as o, type BulkCancelEventOptions as p, type BulkCancelEventResponse as q, type EventCancelledEnvelope as r, type EventCreatedEnvelope as s, type EventRecurringSplitEnvelope as t, type EventUpdatedEnvelope as u, Status as v, RecurrenceType as w, Frequency as x, LocationType as y, Role as z };
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { HttpClient, EventDefinition, MaybeContext, BuildRESTFunction, BuildEventDefinition } from '@wix/sdk-types';
|
|
2
|
-
import { L as ListEventsByContactIdOptions, a as ListEventsByContactIdResponse, b as ListEventsByMemberIdOptions, c as ListEventsByMemberIdResponse, G as GetEventOptions, E as Event, d as ListEventsOptions, e as ListEventsResponse, Q as QueryEventsOptions, f as EventsQueryBuilder, C as CreateEventOptions, M as MaskedEvent, B as BulkCreateEventOptions, g as BulkCreateEventResponse, U as UpdateEvent, h as UpdateEventOptions, i as BulkUpdateEventRequestMaskedEvent, j as BulkUpdateEventOptions, k as BulkUpdateEventResponse, F as FieldWithLiterals, R as RestoreEventDefaultsOptions, l as RestoreEventDefaultsResponse, S as SplitRecurringEventOptions, m as SplitRecurringEventResponse, n as CancelEventOptions, o as CancelEventResponse, p as BulkCancelEventOptions, q as BulkCancelEventResponse, r as EventCancelledEnvelope, s as EventCreatedEnvelope, t as EventRecurringSplitEnvelope, u as EventUpdatedEnvelope } from './calendar-v3-event-events.universal-
|
|
3
|
-
export {
|
|
2
|
+
import { L as ListEventsByContactIdOptions, a as ListEventsByContactIdResponse, b as ListEventsByMemberIdOptions, c as ListEventsByMemberIdResponse, G as GetEventOptions, E as Event, d as ListEventsOptions, e as ListEventsResponse, Q as QueryEventsOptions, f as EventsQueryBuilder, C as CreateEventOptions, M as MaskedEvent, B as BulkCreateEventOptions, g as BulkCreateEventResponse, U as UpdateEvent, h as UpdateEventOptions, i as BulkUpdateEventRequestMaskedEvent, j as BulkUpdateEventOptions, k as BulkUpdateEventResponse, F as FieldWithLiterals, R as RestoreEventDefaultsOptions, l as RestoreEventDefaultsResponse, S as SplitRecurringEventOptions, m as SplitRecurringEventResponse, n as CancelEventOptions, o as CancelEventResponse, p as BulkCancelEventOptions, q as BulkCancelEventResponse, r as EventCancelledEnvelope, s as EventCreatedEnvelope, t as EventRecurringSplitEnvelope, u as EventUpdatedEnvelope } from './calendar-v3-event-events.universal-CLDnUCNu.js';
|
|
3
|
+
export { ak as ActionEvent, ay as Address, az as AddressHint, b4 as ApplicationError, bf as BaseEventMetadata, b5 as BulkActionMetadata, be as BulkCancelEventRequest, b1 as BulkCreateEventRequest, b2 as BulkEventResult, b8 as BulkUpdateEventRequest, aB as BusinessSchedule, bd as CancelEventRequest, aw as Categories, aI as ChangeContext, aJ as ChangeContextPayloadOneOf, ap as CommonCursorPaging, aq as CommonCursorPagingMetadata, ar as CommonCursors, a3 as CommonIdentificationData, a4 as CommonIdentificationDataIdOneOf, a1 as ConferencingDetails, aG as ConsentPolicy, a$ as CreateEventRequest, b0 as CreateEventResponse, aV as CursorPaging, aX as CursorPagingMetadata, aS as CursorQuery, aT as CursorQueryPagingMethodOneOf, aY as Cursors, D as Day, K as DayOfWeek, ae as DomainEvent, af as DomainEventBodyOneOf, aN as Empty, ag as EntityCreatedEvent, aj as EntityDeletedEvent, ai as EntityUpdatedEvent, a7 as EventCancelled, bg as EventMetadata, a9 as EventUpdatedWithMetadata, bh as EventsQueryResult, a5 as ExtendedFields, H as Field, x as Frequency, aA as GeoCoordinates, aO as GetEventRequest, aP as GetEventResponse, am as IdentificationData, an as IdentificationDataIdOneOf, I as IdentityType, b3 as ItemMetadata, ao as ListEventsByContactIdRequest, as as ListEventsByMemberIdRequest, aQ as ListEventsRequest, aZ as ListRecurringEventInstancesHistoryRequest, a_ as ListRecurringEventInstancesHistoryResponse, ax as Locale, Y as Location, y as LocationType, al as MessageEnvelope, aE as Multilingual, a0 as Participant, a8 as ParticipantNotification, $ as Participants, P as ParticipantsStatus, a2 as Permission, J as PlacementType, av as Properties, aK as PropertiesChange, aR as QueryEventsRequest, aW as QueryEventsResponse, X as RecurrenceRule, w as RecurrenceType, a6 as RecurringEventSplit, O as RequestedFields, N as ResolutionMethod, _ as Resource, bb as RestoreEventDefaultsRequest, ah as RestoreInfo, z as Role, aM as SiteCloned, aL as SiteCreated, au as SitePropertiesEvent, at as SitePropertiesNotification, V as SortOrder, aU as Sorting, aD as SpecialHourPeriod, bc as SplitRecurringEventRequest, v as Status, aF as SupportedLanguage, aC as TimePeriod, aH as Translation, T as Transparency, A as Type, b9 as UpdateEventParticipantsRequest, ba as UpdateEventParticipantsResponse, b6 as UpdateEventRequest, b7 as UpdateEventResponse, ac as UpdateEventsWithFixedBusinessResourceIdRequest, ad as UpdateEventsWithFixedBusinessResourceIdResponse, aa as UpdateScheduleWithFixedBusinessResourceIdRequest, ab as UpdateScheduleWithFixedBusinessResourceIdResponse, W as WebhookIdentityType, Z as ZonedDate } from './calendar-v3-event-events.universal-CLDnUCNu.js';
|
|
4
4
|
|
|
5
5
|
declare function listEventsByContactId$1(httpClient: HttpClient): ListEventsByContactIdSignature;
|
|
6
6
|
interface ListEventsByContactIdSignature {
|
|
@@ -787,6 +787,14 @@ var IdentityType = /* @__PURE__ */ ((IdentityType2) => {
|
|
|
787
787
|
IdentityType2["WIX_USER"] = "WIX_USER";
|
|
788
788
|
return IdentityType2;
|
|
789
789
|
})(IdentityType || {});
|
|
790
|
+
var WebhookIdentityType = /* @__PURE__ */ ((WebhookIdentityType2) => {
|
|
791
|
+
WebhookIdentityType2["UNKNOWN"] = "UNKNOWN";
|
|
792
|
+
WebhookIdentityType2["ANONYMOUS_VISITOR"] = "ANONYMOUS_VISITOR";
|
|
793
|
+
WebhookIdentityType2["MEMBER"] = "MEMBER";
|
|
794
|
+
WebhookIdentityType2["WIX_USER"] = "WIX_USER";
|
|
795
|
+
WebhookIdentityType2["APP"] = "APP";
|
|
796
|
+
return WebhookIdentityType2;
|
|
797
|
+
})(WebhookIdentityType || {});
|
|
790
798
|
var PlacementType = /* @__PURE__ */ ((PlacementType2) => {
|
|
791
799
|
PlacementType2["BEFORE"] = "BEFORE";
|
|
792
800
|
PlacementType2["AFTER"] = "AFTER";
|
|
@@ -809,14 +817,6 @@ var ResolutionMethod = /* @__PURE__ */ ((ResolutionMethod2) => {
|
|
|
809
817
|
ResolutionMethod2["SUBDIRECTORY"] = "SUBDIRECTORY";
|
|
810
818
|
return ResolutionMethod2;
|
|
811
819
|
})(ResolutionMethod || {});
|
|
812
|
-
var WebhookIdentityType = /* @__PURE__ */ ((WebhookIdentityType2) => {
|
|
813
|
-
WebhookIdentityType2["UNKNOWN"] = "UNKNOWN";
|
|
814
|
-
WebhookIdentityType2["ANONYMOUS_VISITOR"] = "ANONYMOUS_VISITOR";
|
|
815
|
-
WebhookIdentityType2["MEMBER"] = "MEMBER";
|
|
816
|
-
WebhookIdentityType2["WIX_USER"] = "WIX_USER";
|
|
817
|
-
WebhookIdentityType2["APP"] = "APP";
|
|
818
|
-
return WebhookIdentityType2;
|
|
819
|
-
})(WebhookIdentityType || {});
|
|
820
820
|
var RequestedFields = /* @__PURE__ */ ((RequestedFields2) => {
|
|
821
821
|
RequestedFields2["UNKNOWN_REQUESTED_FIELDS"] = "UNKNOWN_REQUESTED_FIELDS";
|
|
822
822
|
RequestedFields2["PI_FIELDS"] = "PI_FIELDS";
|