@wix/auto_sdk_calendar_events 1.0.37 → 1.0.39
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/cjs/index.d.ts +4 -4
- package/build/cjs/index.js +42 -1
- package/build/cjs/index.js.map +1 -1
- package/build/cjs/index.typings.d.ts +2 -1
- package/build/cjs/index.typings.js +39 -0
- package/build/cjs/index.typings.js.map +1 -1
- package/build/cjs/meta.js +39 -0
- package/build/cjs/meta.js.map +1 -1
- package/build/es/index.d.mts +4 -4
- package/build/es/index.mjs +42 -1
- package/build/es/index.mjs.map +1 -1
- package/build/es/index.typings.d.mts +2 -1
- package/build/es/index.typings.mjs +39 -0
- package/build/es/index.typings.mjs.map +1 -1
- package/build/es/meta.mjs +39 -0
- package/build/es/meta.mjs.map +1 -1
- package/build/internal/cjs/index.d.ts +4 -4
- package/build/internal/cjs/index.js +42 -1
- package/build/internal/cjs/index.js.map +1 -1
- package/build/internal/cjs/index.typings.d.ts +2 -1
- package/build/internal/cjs/index.typings.js +39 -0
- package/build/internal/cjs/index.typings.js.map +1 -1
- package/build/internal/cjs/meta.js +39 -0
- package/build/internal/cjs/meta.js.map +1 -1
- package/build/internal/es/index.d.mts +4 -4
- package/build/internal/es/index.mjs +42 -1
- package/build/internal/es/index.mjs.map +1 -1
- package/build/internal/es/index.typings.d.mts +2 -1
- package/build/internal/es/index.typings.mjs +39 -0
- package/build/internal/es/index.typings.mjs.map +1 -1
- package/build/internal/es/meta.mjs +39 -0
- package/build/internal/es/meta.mjs.map +1 -1
- package/package.json +2 -2
package/build/cjs/index.d.ts
CHANGED
|
@@ -263,7 +263,7 @@ declare const bulkCancelEvent: MaybeContext<BuildRESTFunction<typeof bulkCancelE
|
|
|
263
263
|
* [Events View API](https://dev.wix.com/docs/rest/business-management/calendar/event-views-v3/introduction)
|
|
264
264
|
* to get notified about `INSTANCE` events.
|
|
265
265
|
*/
|
|
266
|
-
declare const onEventCancelled: BuildEventDefinition<typeof onEventCancelled$1
|
|
266
|
+
declare const onEventCancelled: BuildEventDefinition<typeof onEventCancelled$1> & typeof onEventCancelled$1;
|
|
267
267
|
/**
|
|
268
268
|
* Triggered when an event is created, including when an existing `MASTER`
|
|
269
269
|
* event is split.
|
|
@@ -272,11 +272,11 @@ declare const onEventCancelled: BuildEventDefinition<typeof onEventCancelled$1>;
|
|
|
272
272
|
* [Events View API](https://dev.wix.com/docs/rest/business-management/calendar/event-views-v3/introduction)
|
|
273
273
|
* to get notified about `INSTANCE` events.
|
|
274
274
|
*/
|
|
275
|
-
declare const onEventCreated: BuildEventDefinition<typeof onEventCreated$1
|
|
275
|
+
declare const onEventCreated: BuildEventDefinition<typeof onEventCreated$1> & typeof onEventCreated$1;
|
|
276
276
|
/**
|
|
277
277
|
* Triggered when a `MASTER` event is split.
|
|
278
278
|
*/
|
|
279
|
-
declare const onEventRecurringSplit: BuildEventDefinition<typeof onEventRecurringSplit$1
|
|
279
|
+
declare const onEventRecurringSplit: BuildEventDefinition<typeof onEventRecurringSplit$1> & typeof onEventRecurringSplit$1;
|
|
280
280
|
/**
|
|
281
281
|
* Triggered when an event is updated, including when it's canceled.
|
|
282
282
|
*
|
|
@@ -284,6 +284,6 @@ declare const onEventRecurringSplit: BuildEventDefinition<typeof onEventRecurrin
|
|
|
284
284
|
* [Events View API](https://dev.wix.com/docs/rest/business-management/calendar/event-views-v3/introduction)
|
|
285
285
|
* to get notified about `INSTANCE` events.
|
|
286
286
|
*/
|
|
287
|
-
declare const onEventUpdated: BuildEventDefinition<typeof onEventUpdated$1
|
|
287
|
+
declare const onEventUpdated: BuildEventDefinition<typeof onEventUpdated$1> & typeof onEventUpdated$1;
|
|
288
288
|
|
|
289
289
|
export { BulkCancelEventApplicationErrors, BulkCancelEventOptions, BulkCancelEventResponse, BulkCreateEventOptions, BulkCreateEventResponse, BulkUpdateEventOptions, BulkUpdateEventRequestMaskedEvent, BulkUpdateEventResponse, CancelEventApplicationErrors, CancelEventOptions, CancelEventResponse, CreateEventOptions, Event, EventCancelledEnvelope, EventCreatedEnvelope, EventRecurringSplitEnvelope, EventUpdatedEnvelope, EventsQueryBuilder, FieldWithLiterals, GetEventOptions, ListEventsByContactIdOptions, ListEventsByContactIdResponse, ListEventsByMemberIdOptions, ListEventsByMemberIdResponse, ListEventsOptions, ListEventsResponse, MaskedEvent, QueryEventsOptions, RestoreEventDefaultsOptions, RestoreEventDefaultsResponse, SplitRecurringEventOptions, SplitRecurringEventResponse, UpdateEvent, UpdateEventOptions, bulkCancelEvent, bulkCreateEvent, bulkUpdateEvent, cancelEvent, createEvent, getEvent, listEvents, listEventsByContactId, listEventsByMemberId, onEventCancelled, onEventCreated, onEventRecurringSplit, onEventUpdated, queryEvents, restoreEventDefaults, splitRecurringEvent, updateEvent };
|
package/build/cjs/index.js
CHANGED
|
@@ -185,6 +185,9 @@ function listEventsByContactId(payload) {
|
|
|
185
185
|
method: "GET",
|
|
186
186
|
methodFqn: "wix.calendar.participantevents.v3.ParticipantEventsService.ListEventsByContactId",
|
|
187
187
|
packageName: PACKAGE_NAME,
|
|
188
|
+
migrationOptions: {
|
|
189
|
+
optInTransformResponse: true
|
|
190
|
+
},
|
|
188
191
|
url: resolveWixCalendarParticipanteventsV3ParticipantEventsServiceUrl({
|
|
189
192
|
protoPath: "/v3/events/contactId/{contactId}",
|
|
190
193
|
data: payload,
|
|
@@ -218,6 +221,9 @@ function listEventsByMemberId(payload) {
|
|
|
218
221
|
method: "GET",
|
|
219
222
|
methodFqn: "wix.calendar.participantevents.v3.ParticipantEventsService.ListEventsByMemberId",
|
|
220
223
|
packageName: PACKAGE_NAME,
|
|
224
|
+
migrationOptions: {
|
|
225
|
+
optInTransformResponse: true
|
|
226
|
+
},
|
|
221
227
|
url: resolveWixCalendarParticipanteventsV3ParticipantEventsServiceUrl({
|
|
222
228
|
protoPath: "/v3/events/memberId/{memberId}",
|
|
223
229
|
data: payload,
|
|
@@ -251,6 +257,9 @@ function getEvent(payload) {
|
|
|
251
257
|
method: "GET",
|
|
252
258
|
methodFqn: "wix.calendar.events.v3.EventsService.GetEvent",
|
|
253
259
|
packageName: PACKAGE_NAME,
|
|
260
|
+
migrationOptions: {
|
|
261
|
+
optInTransformResponse: true
|
|
262
|
+
},
|
|
254
263
|
url: resolveWixCalendarEventsV3EventsServiceUrl({
|
|
255
264
|
protoPath: "/v3/events/{eventId}",
|
|
256
265
|
data: payload,
|
|
@@ -284,6 +293,9 @@ function listEvents(payload) {
|
|
|
284
293
|
method: "GET",
|
|
285
294
|
methodFqn: "wix.calendar.events.v3.EventsService.ListEvents",
|
|
286
295
|
packageName: PACKAGE_NAME,
|
|
296
|
+
migrationOptions: {
|
|
297
|
+
optInTransformResponse: true
|
|
298
|
+
},
|
|
287
299
|
url: resolveWixCalendarEventsV3EventsServiceUrl({
|
|
288
300
|
protoPath: "/v3/events",
|
|
289
301
|
data: payload,
|
|
@@ -317,6 +329,9 @@ function queryEvents(payload) {
|
|
|
317
329
|
method: "POST",
|
|
318
330
|
methodFqn: "wix.calendar.events.v3.EventsService.QueryEvents",
|
|
319
331
|
packageName: PACKAGE_NAME,
|
|
332
|
+
migrationOptions: {
|
|
333
|
+
optInTransformResponse: true
|
|
334
|
+
},
|
|
320
335
|
url: resolveWixCalendarEventsV3EventsServiceUrl({
|
|
321
336
|
protoPath: "/v3/events/query",
|
|
322
337
|
data: payload,
|
|
@@ -369,6 +384,9 @@ function createEvent(payload) {
|
|
|
369
384
|
method: "POST",
|
|
370
385
|
methodFqn: "wix.calendar.events.v3.EventsService.CreateEvent",
|
|
371
386
|
packageName: PACKAGE_NAME,
|
|
387
|
+
migrationOptions: {
|
|
388
|
+
optInTransformResponse: true
|
|
389
|
+
},
|
|
372
390
|
url: resolveWixCalendarEventsV3EventsServiceUrl({
|
|
373
391
|
protoPath: "/v3/events",
|
|
374
392
|
data: serializedData,
|
|
@@ -421,6 +439,9 @@ function bulkCreateEvent(payload) {
|
|
|
421
439
|
method: "POST",
|
|
422
440
|
methodFqn: "wix.calendar.events.v3.EventsService.BulkCreateEvent",
|
|
423
441
|
packageName: PACKAGE_NAME,
|
|
442
|
+
migrationOptions: {
|
|
443
|
+
optInTransformResponse: true
|
|
444
|
+
},
|
|
424
445
|
url: resolveWixCalendarEventsV3EventsServiceUrl({
|
|
425
446
|
protoPath: "/v3/bulk/events/create",
|
|
426
447
|
data: serializedData,
|
|
@@ -473,6 +494,9 @@ function updateEvent(payload) {
|
|
|
473
494
|
method: "PATCH",
|
|
474
495
|
methodFqn: "wix.calendar.events.v3.EventsService.UpdateEvent",
|
|
475
496
|
packageName: PACKAGE_NAME,
|
|
497
|
+
migrationOptions: {
|
|
498
|
+
optInTransformResponse: true
|
|
499
|
+
},
|
|
476
500
|
url: resolveWixCalendarEventsV3EventsServiceUrl({
|
|
477
501
|
protoPath: "/v3/events/{event.id}",
|
|
478
502
|
data: serializedData,
|
|
@@ -525,6 +549,9 @@ function bulkUpdateEvent(payload) {
|
|
|
525
549
|
method: "POST",
|
|
526
550
|
methodFqn: "wix.calendar.events.v3.EventsService.BulkUpdateEvent",
|
|
527
551
|
packageName: PACKAGE_NAME,
|
|
552
|
+
migrationOptions: {
|
|
553
|
+
optInTransformResponse: true
|
|
554
|
+
},
|
|
528
555
|
url: resolveWixCalendarEventsV3EventsServiceUrl({
|
|
529
556
|
protoPath: "/v3/bulk/events/update",
|
|
530
557
|
data: serializedData,
|
|
@@ -558,6 +585,9 @@ function restoreEventDefaults(payload) {
|
|
|
558
585
|
method: "POST",
|
|
559
586
|
methodFqn: "wix.calendar.events.v3.EventsService.RestoreEventDefaults",
|
|
560
587
|
packageName: PACKAGE_NAME,
|
|
588
|
+
migrationOptions: {
|
|
589
|
+
optInTransformResponse: true
|
|
590
|
+
},
|
|
561
591
|
url: resolveWixCalendarEventsV3EventsServiceUrl({
|
|
562
592
|
protoPath: "/v3/events/{eventId}/restore-defaults",
|
|
563
593
|
data: payload,
|
|
@@ -591,6 +621,9 @@ function splitRecurringEvent(payload) {
|
|
|
591
621
|
method: "POST",
|
|
592
622
|
methodFqn: "wix.calendar.events.v3.EventsService.SplitRecurringEvent",
|
|
593
623
|
packageName: PACKAGE_NAME,
|
|
624
|
+
migrationOptions: {
|
|
625
|
+
optInTransformResponse: true
|
|
626
|
+
},
|
|
594
627
|
url: resolveWixCalendarEventsV3EventsServiceUrl({
|
|
595
628
|
protoPath: "/v3/events/{recurringEventId}/split",
|
|
596
629
|
data: payload,
|
|
@@ -648,6 +681,9 @@ function cancelEvent(payload) {
|
|
|
648
681
|
method: "POST",
|
|
649
682
|
methodFqn: "wix.calendar.events.v3.EventsService.CancelEvent",
|
|
650
683
|
packageName: PACKAGE_NAME,
|
|
684
|
+
migrationOptions: {
|
|
685
|
+
optInTransformResponse: true
|
|
686
|
+
},
|
|
651
687
|
url: resolveWixCalendarEventsV3EventsServiceUrl({
|
|
652
688
|
protoPath: "/v3/events/{eventId}/cancel",
|
|
653
689
|
data: payload,
|
|
@@ -681,6 +717,9 @@ function bulkCancelEvent(payload) {
|
|
|
681
717
|
method: "POST",
|
|
682
718
|
methodFqn: "wix.calendar.events.v3.EventsService.BulkCancelEvent",
|
|
683
719
|
packageName: PACKAGE_NAME,
|
|
720
|
+
migrationOptions: {
|
|
721
|
+
optInTransformResponse: true
|
|
722
|
+
},
|
|
684
723
|
url: resolveWixCalendarEventsV3EventsServiceUrl({
|
|
685
724
|
protoPath: "/v3/bulk/events/cancel",
|
|
686
725
|
data: payload,
|
|
@@ -1513,7 +1552,9 @@ var cancelEvent4 = /* @__PURE__ */ (0, import_rest_modules3.createRESTModule)(ca
|
|
|
1513
1552
|
var bulkCancelEvent4 = /* @__PURE__ */ (0, import_rest_modules3.createRESTModule)(bulkCancelEvent3);
|
|
1514
1553
|
var onEventCancelled2 = (0, import_event_definition_modules.createEventModule)(onEventCancelled);
|
|
1515
1554
|
var onEventCreated2 = (0, import_event_definition_modules.createEventModule)(onEventCreated);
|
|
1516
|
-
var onEventRecurringSplit2 = (0, import_event_definition_modules.createEventModule)(
|
|
1555
|
+
var onEventRecurringSplit2 = (0, import_event_definition_modules.createEventModule)(
|
|
1556
|
+
onEventRecurringSplit
|
|
1557
|
+
);
|
|
1517
1558
|
var onEventUpdated2 = (0, import_event_definition_modules.createEventModule)(onEventUpdated);
|
|
1518
1559
|
// Annotate the CommonJS export names for ESM import in node:
|
|
1519
1560
|
0 && (module.exports = {
|