@wix/auto_sdk_events_wix-events-v-2 1.0.54 → 1.0.56

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.
@@ -1,6 +1,11 @@
1
1
  import { CreateEventRequest as CreateEventRequest$1, CreateEventResponse as CreateEventResponse$1, CloneEventRequest as CloneEventRequest$1, CloneEventResponse as CloneEventResponse$1, UpdateEventRequest as UpdateEventRequest$1, UpdateEventResponse as UpdateEventResponse$1, PublishDraftEventRequest as PublishDraftEventRequest$1, PublishDraftEventResponse as PublishDraftEventResponse$1, CancelEventRequest as CancelEventRequest$1, CancelEventResponse as CancelEventResponse$1, BulkCancelEventsByFilterRequest as BulkCancelEventsByFilterRequest$1, BulkCancelEventsByFilterResponse as BulkCancelEventsByFilterResponse$1, DeleteEventRequest as DeleteEventRequest$1, DeleteEventResponse as DeleteEventResponse$1, BulkDeleteEventsByFilterRequest as BulkDeleteEventsByFilterRequest$1, BulkDeleteEventsByFilterResponse as BulkDeleteEventsByFilterResponse$1, QueryEventsRequest as QueryEventsRequest$1, QueryEventsResponse as QueryEventsResponse$1, CountEventsByStatusRequest as CountEventsByStatusRequest$1, CountEventsByStatusResponse as CountEventsByStatusResponse$1, GetEventRequest as GetEventRequest$1, GetEventResponse as GetEventResponse$1, GetEventBySlugRequest as GetEventBySlugRequest$1, GetEventBySlugResponse as GetEventBySlugResponse$1 } from './index.typings.js';
2
2
  import '@wix/sdk-types';
3
3
 
4
+ /**
5
+ * An Event is a structured record of a scheduled gathering, including its title, location, date and time, registration settings, status, and related URLs.
6
+ *
7
+ * You can use it to model and display event details, configure how guests register, and manage visibility and calendars across the site or app.
8
+ */
4
9
  interface Event {
5
10
  /**
6
11
  * Event ID.
package/build/cjs/meta.js CHANGED
@@ -172,6 +172,9 @@ function createEvent(payload) {
172
172
  method: "POST",
173
173
  methodFqn: "wix.events.events.v3.EventManagement.CreateEvent",
174
174
  packageName: PACKAGE_NAME,
175
+ migrationOptions: {
176
+ optInTransformResponse: true
177
+ },
175
178
  url: resolveWixEventsEventsV3EventManagementUrl({
176
179
  protoPath: "/v3/events",
177
180
  data: serializedData,
@@ -310,6 +313,9 @@ function cloneEvent(payload) {
310
313
  method: "POST",
311
314
  methodFqn: "wix.events.events.v3.EventManagement.CloneEvent",
312
315
  packageName: PACKAGE_NAME,
316
+ migrationOptions: {
317
+ optInTransformResponse: true
318
+ },
313
319
  url: resolveWixEventsEventsV3EventManagementUrl({
314
320
  protoPath: "/v3/events/{eventId}/clone",
315
321
  data: serializedData,
@@ -448,6 +454,9 @@ function updateEvent(payload) {
448
454
  method: "PATCH",
449
455
  methodFqn: "wix.events.events.v3.EventManagement.UpdateEvent",
450
456
  packageName: PACKAGE_NAME,
457
+ migrationOptions: {
458
+ optInTransformResponse: true
459
+ },
451
460
  url: resolveWixEventsEventsV3EventManagementUrl({
452
461
  protoPath: "/v3/events/{event.id}",
453
462
  data: serializedData,
@@ -525,6 +534,9 @@ function publishDraftEvent(payload) {
525
534
  method: "POST",
526
535
  methodFqn: "wix.events.events.v3.EventManagement.PublishDraftEvent",
527
536
  packageName: PACKAGE_NAME,
537
+ migrationOptions: {
538
+ optInTransformResponse: true
539
+ },
528
540
  url: resolveWixEventsEventsV3EventManagementUrl({
529
541
  protoPath: "/v3/events/{eventId}/publish",
530
542
  data: payload,
@@ -602,6 +614,9 @@ function cancelEvent(payload) {
602
614
  method: "POST",
603
615
  methodFqn: "wix.events.events.v3.EventManagement.CancelEvent",
604
616
  packageName: PACKAGE_NAME,
617
+ migrationOptions: {
618
+ optInTransformResponse: true
619
+ },
605
620
  url: resolveWixEventsEventsV3EventManagementUrl({
606
621
  protoPath: "/v3/events/{eventId}/cancel",
607
622
  data: payload,
@@ -679,6 +694,9 @@ function bulkCancelEventsByFilter(payload) {
679
694
  method: "POST",
680
695
  methodFqn: "wix.events.events.v3.EventManagement.BulkCancelEventsByFilter",
681
696
  packageName: PACKAGE_NAME,
697
+ migrationOptions: {
698
+ optInTransformResponse: true
699
+ },
682
700
  url: resolveWixEventsEventsV3EventManagementUrl({
683
701
  protoPath: "/v3/bulk/events/cancel-by-filter",
684
702
  data: payload,
@@ -697,6 +715,9 @@ function deleteEvent(payload) {
697
715
  method: "DELETE",
698
716
  methodFqn: "wix.events.events.v3.EventManagement.DeleteEvent",
699
717
  packageName: PACKAGE_NAME,
718
+ migrationOptions: {
719
+ optInTransformResponse: true
720
+ },
700
721
  url: resolveWixEventsEventsV3EventManagementUrl({
701
722
  protoPath: "/v3/events/{eventId}",
702
723
  data: payload,
@@ -715,6 +736,9 @@ function bulkDeleteEventsByFilter(payload) {
715
736
  method: "POST",
716
737
  methodFqn: "wix.events.events.v3.EventManagement.BulkDeleteEventsByFilter",
717
738
  packageName: PACKAGE_NAME,
739
+ migrationOptions: {
740
+ optInTransformResponse: true
741
+ },
718
742
  url: resolveWixEventsEventsV3EventManagementUrl({
719
743
  protoPath: "/v3/bulk/events/delete-by-filter",
720
744
  data: payload,
@@ -733,6 +757,9 @@ function queryEvents(payload) {
733
757
  method: "POST",
734
758
  methodFqn: "wix.events.events.v3.EventManagement.QueryEvents",
735
759
  packageName: PACKAGE_NAME,
760
+ migrationOptions: {
761
+ optInTransformResponse: true
762
+ },
736
763
  url: resolveWixEventsEventsV3EventManagementUrl({
737
764
  protoPath: "/v3/events/query",
738
765
  data: payload,
@@ -812,6 +839,9 @@ function countEventsByStatus(payload) {
812
839
  method: "POST",
813
840
  methodFqn: "wix.events.events.v3.EventManagement.CountEventsByStatus",
814
841
  packageName: PACKAGE_NAME,
842
+ migrationOptions: {
843
+ optInTransformResponse: true
844
+ },
815
845
  url: resolveWixEventsEventsV3EventManagementUrl({
816
846
  protoPath: "/v3/events/count-by-status",
817
847
  data: payload,
@@ -830,6 +860,9 @@ function getEvent(payload) {
830
860
  method: "GET",
831
861
  methodFqn: "wix.events.events.v3.EventManagement.GetEvent",
832
862
  packageName: PACKAGE_NAME,
863
+ migrationOptions: {
864
+ optInTransformResponse: true
865
+ },
833
866
  url: resolveWixEventsEventsV3EventManagementUrl({
834
867
  protoPath: "/v3/events/{eventId}",
835
868
  data: payload,
@@ -907,6 +940,9 @@ function getEventBySlug(payload) {
907
940
  method: "GET",
908
941
  methodFqn: "wix.events.events.v3.EventManagement.GetEventBySlug",
909
942
  packageName: PACKAGE_NAME,
943
+ migrationOptions: {
944
+ optInTransformResponse: true
945
+ },
910
946
  url: resolveWixEventsEventsV3EventManagementUrl({
911
947
  protoPath: "/v3/events/slug/{slug}",
912
948
  data: payload,
@@ -1 +1 @@
1
- {"version":3,"sources":["../../meta.ts","../../src/events-v3-event-wix-events-v-2.http.ts","../../src/events-v3-event-wix-events-v-2.meta.ts"],"sourcesContent":["export * from './src/events-v3-event-wix-events-v-2.meta.js';\n","import { toURLSearchParams } from '@wix/sdk-runtime/rest-modules';\nimport { transformSDKFloatToRESTFloat } from '@wix/sdk-runtime/transformations/float';\nimport { transformRESTFloatToSDKFloat } from '@wix/sdk-runtime/transformations/float';\nimport { transformSDKTimestampToRESTTimestamp } from '@wix/sdk-runtime/transformations/timestamp';\nimport { transformRESTTimestampToSDKTimestamp } from '@wix/sdk-runtime/transformations/timestamp';\nimport { transformSDKFieldMaskToRESTFieldMask } from '@wix/sdk-runtime/transformations/field-mask';\nimport { transformPaths } from '@wix/sdk-runtime/transformations/transform-paths';\nimport { resolveUrl } from '@wix/sdk-runtime/rest-modules';\nimport { ResolveUrlOpts } from '@wix/sdk-runtime/rest-modules';\nimport { RequestOptionsFactory } from '@wix/sdk-types';\n\nfunction resolveWixEventsEventsV3EventManagementUrl(\n opts: Omit<ResolveUrlOpts, 'domainToMappings'>\n) {\n const domainToMappings = {\n 'www.wixapis.com': [\n {\n srcPath: '/events/v3/events',\n destPath: '/v3/events',\n },\n {\n srcPath: '/events/v3/bulk/events',\n destPath: '/v3/bulk/events',\n },\n ],\n 'api._api_base_domain_': [\n {\n srcPath: '/events-events-v3-adapter',\n destPath: '',\n },\n ],\n 'manage._base_domain_': [\n {\n srcPath: '/_api/events-events-v3-adapter',\n destPath: '',\n },\n ],\n 'editor.wixapps.net': [\n {\n srcPath: '/_api/events-events-v3-adapter',\n destPath: '',\n },\n ],\n 'editor._base_domain_': [\n {\n srcPath: '/_api/events-events-v3-adapter',\n destPath: '',\n },\n ],\n 'blocks._base_domain_': [\n {\n srcPath: '/_api/events-events-v3-adapter',\n destPath: '',\n },\n ],\n 'create.editorx': [\n {\n srcPath: '/_api/events-events-v3-adapter',\n destPath: '',\n },\n ],\n '*.dev.wix-code.com': [\n {\n srcPath: '/_api/events-events-v3-adapter',\n destPath: '',\n },\n ],\n _: [\n {\n srcPath: '/_api/events-events-v3-adapter',\n destPath: '',\n },\n ],\n };\n\n return resolveUrl(Object.assign(opts, { domainToMappings }));\n}\n\nconst PACKAGE_NAME = '@wix/auto_sdk_events_wix-events-v-2';\n\n/**\n * Creates an event. <br> <br>\n * The event includes a default registration form in the selected language, which consists of input fields for first name, last name, and email. See the Registration Form API ([SDK](https://dev.wix.com/docs/sdk/backend-modules/events/forms/introduction) | [REST](https://dev.wix.com/docs/rest/business-solutions/events/form/about-the-registration-form-api)) for more information. <br> <br>\n * You can create the event as a draft by setting `draft` to `true`. Otherwise, the event is published right away. <br> <br>\n * The event is automatically set up to send daily summary reports of new guests to your business email.\n */\nexport function createEvent(payload: object): RequestOptionsFactory<any> {\n function __createEvent({ host }: any) {\n const serializedData = transformPaths(payload, [\n {\n transformFn: transformSDKTimestampToRESTTimestamp,\n paths: [\n { path: 'event.createdDate' },\n { path: 'event.updatedDate' },\n { path: 'event.publishedDate' },\n { path: 'event.dateAndTimeSettings.startDate' },\n { path: 'event.dateAndTimeSettings.endDate' },\n {\n path: 'event.dateAndTimeSettings.recurringEvents.individualEventDates.startDate',\n },\n {\n path: 'event.dateAndTimeSettings.recurringEvents.individualEventDates.endDate',\n },\n { path: 'event.mainImage.urlExpirationDate' },\n { path: 'event.registration.rsvp.startDate' },\n { path: 'event.registration.rsvp.endDate' },\n { path: 'event.categories.categories.createdDate' },\n { path: 'event.description.metadata.createdTimestamp' },\n { path: 'event.description.metadata.updatedTimestamp' },\n { path: 'event.badges.badges.functionUpdateDate' },\n ],\n },\n {\n transformFn: transformSDKFloatToRESTFloat,\n paths: [\n { path: 'event.location.address.geocode.latitude' },\n { path: 'event.location.address.geocode.longitude' },\n {\n path: 'event.description.nodes.galleryData.items.image.media.duration',\n },\n {\n path: 'event.description.nodes.galleryData.items.video.media.duration',\n },\n {\n path: 'event.description.nodes.galleryData.items.video.thumbnail.duration',\n },\n { path: 'event.description.nodes.galleryData.options.item.ratio' },\n { path: 'event.description.nodes.imageData.image.duration' },\n { path: 'event.description.nodes.mapData.mapSettings.lat' },\n { path: 'event.description.nodes.mapData.mapSettings.lng' },\n { path: 'event.description.nodes.pollData.poll.image.duration' },\n {\n path: 'event.description.nodes.pollData.poll.options.image.duration',\n },\n {\n path: 'event.description.nodes.pollData.design.poll.background.image.duration',\n },\n { path: 'event.description.nodes.appEmbedData.image.duration' },\n { path: 'event.description.nodes.videoData.video.duration' },\n { path: 'event.description.nodes.videoData.thumbnail.duration' },\n { path: 'event.description.nodes.audioData.audio.duration' },\n { path: 'event.description.nodes.audioData.coverImage.duration' },\n ],\n },\n ]);\n const metadata = {\n entityFqdn: 'wix.events.v3.event',\n method: 'POST' as any,\n methodFqn: 'wix.events.events.v3.EventManagement.CreateEvent',\n packageName: PACKAGE_NAME,\n url: resolveWixEventsEventsV3EventManagementUrl({\n protoPath: '/v3/events',\n data: serializedData,\n host,\n }),\n data: serializedData,\n transformResponse: (payload: any) =>\n transformPaths(payload, [\n {\n transformFn: transformRESTTimestampToSDKTimestamp,\n paths: [\n { path: 'event.createdDate' },\n { path: 'event.updatedDate' },\n { path: 'event.publishedDate' },\n { path: 'event.dateAndTimeSettings.startDate' },\n { path: 'event.dateAndTimeSettings.endDate' },\n {\n path: 'event.dateAndTimeSettings.recurringEvents.individualEventDates.startDate',\n },\n {\n path: 'event.dateAndTimeSettings.recurringEvents.individualEventDates.endDate',\n },\n { path: 'event.mainImage.urlExpirationDate' },\n { path: 'event.registration.rsvp.startDate' },\n { path: 'event.registration.rsvp.endDate' },\n { path: 'event.categories.categories.createdDate' },\n { path: 'event.description.metadata.createdTimestamp' },\n { path: 'event.description.metadata.updatedTimestamp' },\n { path: 'event.badges.badges.functionUpdateDate' },\n ],\n },\n {\n transformFn: transformRESTFloatToSDKFloat,\n paths: [\n { path: 'event.location.address.geocode.latitude' },\n { path: 'event.location.address.geocode.longitude' },\n {\n path: 'event.description.nodes.galleryData.items.image.media.duration',\n },\n {\n path: 'event.description.nodes.galleryData.items.video.media.duration',\n },\n {\n path: 'event.description.nodes.galleryData.items.video.thumbnail.duration',\n },\n {\n path: 'event.description.nodes.galleryData.options.item.ratio',\n },\n { path: 'event.description.nodes.imageData.image.duration' },\n { path: 'event.description.nodes.mapData.mapSettings.lat' },\n { path: 'event.description.nodes.mapData.mapSettings.lng' },\n { path: 'event.description.nodes.pollData.poll.image.duration' },\n {\n path: 'event.description.nodes.pollData.poll.options.image.duration',\n },\n {\n path: 'event.description.nodes.pollData.design.poll.background.image.duration',\n },\n { path: 'event.description.nodes.appEmbedData.image.duration' },\n { path: 'event.description.nodes.videoData.video.duration' },\n { path: 'event.description.nodes.videoData.thumbnail.duration' },\n { path: 'event.description.nodes.audioData.audio.duration' },\n { path: 'event.description.nodes.audioData.coverImage.duration' },\n ],\n },\n ]),\n };\n\n return metadata;\n }\n\n return __createEvent;\n}\n\n/**\n * Clones an event, including the registration form, notifications, multilingual translations and ticket configuration from the original event. <br> <br>\n * The new event's date is automatically set to 14 days from the original event date. <br> <br>\n * If an event with the same `title` already exists, the new event's `title` gets a sequence number. For example, if you clone an event named `\"Leather Crafting 101\"`, the new event's title is `\"Leather Crafting 101 (1)\"`. <br> <br>\n * You can change the required entity field values while cloning an event.\n */\nexport function cloneEvent(payload: object): RequestOptionsFactory<any> {\n function __cloneEvent({ host }: any) {\n const serializedData = transformPaths(payload, [\n {\n transformFn: transformSDKFieldMaskToRESTFieldMask,\n paths: [{ path: 'fieldmask' }],\n },\n {\n transformFn: transformSDKTimestampToRESTTimestamp,\n paths: [\n { path: 'event.createdDate' },\n { path: 'event.updatedDate' },\n { path: 'event.publishedDate' },\n { path: 'event.dateAndTimeSettings.startDate' },\n { path: 'event.dateAndTimeSettings.endDate' },\n {\n path: 'event.dateAndTimeSettings.recurringEvents.individualEventDates.startDate',\n },\n {\n path: 'event.dateAndTimeSettings.recurringEvents.individualEventDates.endDate',\n },\n { path: 'event.mainImage.urlExpirationDate' },\n { path: 'event.registration.rsvp.startDate' },\n { path: 'event.registration.rsvp.endDate' },\n { path: 'event.categories.categories.createdDate' },\n { path: 'event.description.metadata.createdTimestamp' },\n { path: 'event.description.metadata.updatedTimestamp' },\n { path: 'event.badges.badges.functionUpdateDate' },\n ],\n },\n {\n transformFn: transformSDKFloatToRESTFloat,\n paths: [\n { path: 'event.location.address.geocode.latitude' },\n { path: 'event.location.address.geocode.longitude' },\n {\n path: 'event.description.nodes.galleryData.items.image.media.duration',\n },\n {\n path: 'event.description.nodes.galleryData.items.video.media.duration',\n },\n {\n path: 'event.description.nodes.galleryData.items.video.thumbnail.duration',\n },\n { path: 'event.description.nodes.galleryData.options.item.ratio' },\n { path: 'event.description.nodes.imageData.image.duration' },\n { path: 'event.description.nodes.mapData.mapSettings.lat' },\n { path: 'event.description.nodes.mapData.mapSettings.lng' },\n { path: 'event.description.nodes.pollData.poll.image.duration' },\n {\n path: 'event.description.nodes.pollData.poll.options.image.duration',\n },\n {\n path: 'event.description.nodes.pollData.design.poll.background.image.duration',\n },\n { path: 'event.description.nodes.appEmbedData.image.duration' },\n { path: 'event.description.nodes.videoData.video.duration' },\n { path: 'event.description.nodes.videoData.thumbnail.duration' },\n { path: 'event.description.nodes.audioData.audio.duration' },\n { path: 'event.description.nodes.audioData.coverImage.duration' },\n ],\n },\n ]);\n const metadata = {\n entityFqdn: 'wix.events.v3.event',\n method: 'POST' as any,\n methodFqn: 'wix.events.events.v3.EventManagement.CloneEvent',\n packageName: PACKAGE_NAME,\n url: resolveWixEventsEventsV3EventManagementUrl({\n protoPath: '/v3/events/{eventId}/clone',\n data: serializedData,\n host,\n }),\n data: serializedData,\n transformResponse: (payload: any) =>\n transformPaths(payload, [\n {\n transformFn: transformRESTTimestampToSDKTimestamp,\n paths: [\n { path: 'event.createdDate' },\n { path: 'event.updatedDate' },\n { path: 'event.publishedDate' },\n { path: 'event.dateAndTimeSettings.startDate' },\n { path: 'event.dateAndTimeSettings.endDate' },\n {\n path: 'event.dateAndTimeSettings.recurringEvents.individualEventDates.startDate',\n },\n {\n path: 'event.dateAndTimeSettings.recurringEvents.individualEventDates.endDate',\n },\n { path: 'event.mainImage.urlExpirationDate' },\n { path: 'event.registration.rsvp.startDate' },\n { path: 'event.registration.rsvp.endDate' },\n { path: 'event.categories.categories.createdDate' },\n { path: 'event.description.metadata.createdTimestamp' },\n { path: 'event.description.metadata.updatedTimestamp' },\n { path: 'event.badges.badges.functionUpdateDate' },\n ],\n },\n {\n transformFn: transformRESTFloatToSDKFloat,\n paths: [\n { path: 'event.location.address.geocode.latitude' },\n { path: 'event.location.address.geocode.longitude' },\n {\n path: 'event.description.nodes.galleryData.items.image.media.duration',\n },\n {\n path: 'event.description.nodes.galleryData.items.video.media.duration',\n },\n {\n path: 'event.description.nodes.galleryData.items.video.thumbnail.duration',\n },\n {\n path: 'event.description.nodes.galleryData.options.item.ratio',\n },\n { path: 'event.description.nodes.imageData.image.duration' },\n { path: 'event.description.nodes.mapData.mapSettings.lat' },\n { path: 'event.description.nodes.mapData.mapSettings.lng' },\n { path: 'event.description.nodes.pollData.poll.image.duration' },\n {\n path: 'event.description.nodes.pollData.poll.options.image.duration',\n },\n {\n path: 'event.description.nodes.pollData.design.poll.background.image.duration',\n },\n { path: 'event.description.nodes.appEmbedData.image.duration' },\n { path: 'event.description.nodes.videoData.video.duration' },\n { path: 'event.description.nodes.videoData.thumbnail.duration' },\n { path: 'event.description.nodes.audioData.audio.duration' },\n { path: 'event.description.nodes.audioData.coverImage.duration' },\n ],\n },\n ]),\n };\n\n return metadata;\n }\n\n return __cloneEvent;\n}\n\n/** Updates an event. */\nexport function updateEvent(payload: object): RequestOptionsFactory<any> {\n function __updateEvent({ host }: any) {\n const serializedData = transformPaths(payload, [\n {\n transformFn: transformSDKFieldMaskToRESTFieldMask,\n paths: [{ path: 'fieldmask' }],\n },\n {\n transformFn: transformSDKTimestampToRESTTimestamp,\n paths: [\n { path: 'event.createdDate' },\n { path: 'event.updatedDate' },\n { path: 'event.publishedDate' },\n { path: 'event.dateAndTimeSettings.startDate' },\n { path: 'event.dateAndTimeSettings.endDate' },\n {\n path: 'event.dateAndTimeSettings.recurringEvents.individualEventDates.startDate',\n },\n {\n path: 'event.dateAndTimeSettings.recurringEvents.individualEventDates.endDate',\n },\n { path: 'event.mainImage.urlExpirationDate' },\n { path: 'event.registration.rsvp.startDate' },\n { path: 'event.registration.rsvp.endDate' },\n { path: 'event.categories.categories.createdDate' },\n { path: 'event.description.metadata.createdTimestamp' },\n { path: 'event.description.metadata.updatedTimestamp' },\n { path: 'event.badges.badges.functionUpdateDate' },\n ],\n },\n {\n transformFn: transformSDKFloatToRESTFloat,\n paths: [\n { path: 'event.location.address.geocode.latitude' },\n { path: 'event.location.address.geocode.longitude' },\n {\n path: 'event.description.nodes.galleryData.items.image.media.duration',\n },\n {\n path: 'event.description.nodes.galleryData.items.video.media.duration',\n },\n {\n path: 'event.description.nodes.galleryData.items.video.thumbnail.duration',\n },\n { path: 'event.description.nodes.galleryData.options.item.ratio' },\n { path: 'event.description.nodes.imageData.image.duration' },\n { path: 'event.description.nodes.mapData.mapSettings.lat' },\n { path: 'event.description.nodes.mapData.mapSettings.lng' },\n { path: 'event.description.nodes.pollData.poll.image.duration' },\n {\n path: 'event.description.nodes.pollData.poll.options.image.duration',\n },\n {\n path: 'event.description.nodes.pollData.design.poll.background.image.duration',\n },\n { path: 'event.description.nodes.appEmbedData.image.duration' },\n { path: 'event.description.nodes.videoData.video.duration' },\n { path: 'event.description.nodes.videoData.thumbnail.duration' },\n { path: 'event.description.nodes.audioData.audio.duration' },\n { path: 'event.description.nodes.audioData.coverImage.duration' },\n ],\n },\n ]);\n const metadata = {\n entityFqdn: 'wix.events.v3.event',\n method: 'PATCH' as any,\n methodFqn: 'wix.events.events.v3.EventManagement.UpdateEvent',\n packageName: PACKAGE_NAME,\n url: resolveWixEventsEventsV3EventManagementUrl({\n protoPath: '/v3/events/{event.id}',\n data: serializedData,\n host,\n }),\n data: serializedData,\n transformResponse: (payload: any) =>\n transformPaths(payload, [\n {\n transformFn: transformRESTTimestampToSDKTimestamp,\n paths: [\n { path: 'event.createdDate' },\n { path: 'event.updatedDate' },\n { path: 'event.publishedDate' },\n { path: 'event.dateAndTimeSettings.startDate' },\n { path: 'event.dateAndTimeSettings.endDate' },\n {\n path: 'event.dateAndTimeSettings.recurringEvents.individualEventDates.startDate',\n },\n {\n path: 'event.dateAndTimeSettings.recurringEvents.individualEventDates.endDate',\n },\n { path: 'event.mainImage.urlExpirationDate' },\n { path: 'event.registration.rsvp.startDate' },\n { path: 'event.registration.rsvp.endDate' },\n { path: 'event.categories.categories.createdDate' },\n { path: 'event.description.metadata.createdTimestamp' },\n { path: 'event.description.metadata.updatedTimestamp' },\n { path: 'event.badges.badges.functionUpdateDate' },\n ],\n },\n {\n transformFn: transformRESTFloatToSDKFloat,\n paths: [\n { path: 'event.location.address.geocode.latitude' },\n { path: 'event.location.address.geocode.longitude' },\n {\n path: 'event.description.nodes.galleryData.items.image.media.duration',\n },\n {\n path: 'event.description.nodes.galleryData.items.video.media.duration',\n },\n {\n path: 'event.description.nodes.galleryData.items.video.thumbnail.duration',\n },\n {\n path: 'event.description.nodes.galleryData.options.item.ratio',\n },\n { path: 'event.description.nodes.imageData.image.duration' },\n { path: 'event.description.nodes.mapData.mapSettings.lat' },\n { path: 'event.description.nodes.mapData.mapSettings.lng' },\n { path: 'event.description.nodes.pollData.poll.image.duration' },\n {\n path: 'event.description.nodes.pollData.poll.options.image.duration',\n },\n {\n path: 'event.description.nodes.pollData.design.poll.background.image.duration',\n },\n { path: 'event.description.nodes.appEmbedData.image.duration' },\n { path: 'event.description.nodes.videoData.video.duration' },\n { path: 'event.description.nodes.videoData.thumbnail.duration' },\n { path: 'event.description.nodes.audioData.audio.duration' },\n { path: 'event.description.nodes.audioData.coverImage.duration' },\n ],\n },\n ]),\n };\n\n return metadata;\n }\n\n return __updateEvent;\n}\n\n/**\n * Publishes a draft event to your live site. Once published, the event's status changes from `\"DRAFT\"` to `\"UPCOMING\"`. <br> <br>\n * It's impossible to revert the `\"DRAFT\"` status after publishing. The only option is to clone the event, then delete the original.\n */\nexport function publishDraftEvent(payload: object): RequestOptionsFactory<any> {\n function __publishDraftEvent({ host }: any) {\n const metadata = {\n entityFqdn: 'wix.events.v3.event',\n method: 'POST' as any,\n methodFqn: 'wix.events.events.v3.EventManagement.PublishDraftEvent',\n packageName: PACKAGE_NAME,\n url: resolveWixEventsEventsV3EventManagementUrl({\n protoPath: '/v3/events/{eventId}/publish',\n data: payload,\n host,\n }),\n data: payload,\n transformResponse: (payload: any) =>\n transformPaths(payload, [\n {\n transformFn: transformRESTTimestampToSDKTimestamp,\n paths: [\n { path: 'event.createdDate' },\n { path: 'event.updatedDate' },\n { path: 'event.publishedDate' },\n { path: 'event.dateAndTimeSettings.startDate' },\n { path: 'event.dateAndTimeSettings.endDate' },\n {\n path: 'event.dateAndTimeSettings.recurringEvents.individualEventDates.startDate',\n },\n {\n path: 'event.dateAndTimeSettings.recurringEvents.individualEventDates.endDate',\n },\n { path: 'event.mainImage.urlExpirationDate' },\n { path: 'event.registration.rsvp.startDate' },\n { path: 'event.registration.rsvp.endDate' },\n { path: 'event.categories.categories.createdDate' },\n { path: 'event.description.metadata.createdTimestamp' },\n { path: 'event.description.metadata.updatedTimestamp' },\n { path: 'event.badges.badges.functionUpdateDate' },\n ],\n },\n {\n transformFn: transformRESTFloatToSDKFloat,\n paths: [\n { path: 'event.location.address.geocode.latitude' },\n { path: 'event.location.address.geocode.longitude' },\n {\n path: 'event.description.nodes.galleryData.items.image.media.duration',\n },\n {\n path: 'event.description.nodes.galleryData.items.video.media.duration',\n },\n {\n path: 'event.description.nodes.galleryData.items.video.thumbnail.duration',\n },\n {\n path: 'event.description.nodes.galleryData.options.item.ratio',\n },\n { path: 'event.description.nodes.imageData.image.duration' },\n { path: 'event.description.nodes.mapData.mapSettings.lat' },\n { path: 'event.description.nodes.mapData.mapSettings.lng' },\n { path: 'event.description.nodes.pollData.poll.image.duration' },\n {\n path: 'event.description.nodes.pollData.poll.options.image.duration',\n },\n {\n path: 'event.description.nodes.pollData.design.poll.background.image.duration',\n },\n { path: 'event.description.nodes.appEmbedData.image.duration' },\n { path: 'event.description.nodes.videoData.video.duration' },\n { path: 'event.description.nodes.videoData.thumbnail.duration' },\n { path: 'event.description.nodes.audioData.audio.duration' },\n { path: 'event.description.nodes.audioData.coverImage.duration' },\n ],\n },\n ]),\n };\n\n return metadata;\n }\n\n return __publishDraftEvent;\n}\n\n/**\n * Cancels an event. <br> <br>\n * After cancellation, registration for an event is closed. To reuse the event, call Clone Event and Publish Event to publish it again. <br> <br>\n * If event cancellation notifications are enabled, canceling an event automatically triggers the sending of cancellation emails and/or push notifications to registered guests.\n */\nexport function cancelEvent(payload: object): RequestOptionsFactory<any> {\n function __cancelEvent({ host }: any) {\n const metadata = {\n entityFqdn: 'wix.events.v3.event',\n method: 'POST' as any,\n methodFqn: 'wix.events.events.v3.EventManagement.CancelEvent',\n packageName: PACKAGE_NAME,\n url: resolveWixEventsEventsV3EventManagementUrl({\n protoPath: '/v3/events/{eventId}/cancel',\n data: payload,\n host,\n }),\n data: payload,\n transformResponse: (payload: any) =>\n transformPaths(payload, [\n {\n transformFn: transformRESTTimestampToSDKTimestamp,\n paths: [\n { path: 'event.createdDate' },\n { path: 'event.updatedDate' },\n { path: 'event.publishedDate' },\n { path: 'event.dateAndTimeSettings.startDate' },\n { path: 'event.dateAndTimeSettings.endDate' },\n {\n path: 'event.dateAndTimeSettings.recurringEvents.individualEventDates.startDate',\n },\n {\n path: 'event.dateAndTimeSettings.recurringEvents.individualEventDates.endDate',\n },\n { path: 'event.mainImage.urlExpirationDate' },\n { path: 'event.registration.rsvp.startDate' },\n { path: 'event.registration.rsvp.endDate' },\n { path: 'event.categories.categories.createdDate' },\n { path: 'event.description.metadata.createdTimestamp' },\n { path: 'event.description.metadata.updatedTimestamp' },\n { path: 'event.badges.badges.functionUpdateDate' },\n ],\n },\n {\n transformFn: transformRESTFloatToSDKFloat,\n paths: [\n { path: 'event.location.address.geocode.latitude' },\n { path: 'event.location.address.geocode.longitude' },\n {\n path: 'event.description.nodes.galleryData.items.image.media.duration',\n },\n {\n path: 'event.description.nodes.galleryData.items.video.media.duration',\n },\n {\n path: 'event.description.nodes.galleryData.items.video.thumbnail.duration',\n },\n {\n path: 'event.description.nodes.galleryData.options.item.ratio',\n },\n { path: 'event.description.nodes.imageData.image.duration' },\n { path: 'event.description.nodes.mapData.mapSettings.lat' },\n { path: 'event.description.nodes.mapData.mapSettings.lng' },\n { path: 'event.description.nodes.pollData.poll.image.duration' },\n {\n path: 'event.description.nodes.pollData.poll.options.image.duration',\n },\n {\n path: 'event.description.nodes.pollData.design.poll.background.image.duration',\n },\n { path: 'event.description.nodes.appEmbedData.image.duration' },\n { path: 'event.description.nodes.videoData.video.duration' },\n { path: 'event.description.nodes.videoData.thumbnail.duration' },\n { path: 'event.description.nodes.audioData.audio.duration' },\n { path: 'event.description.nodes.audioData.coverImage.duration' },\n ],\n },\n ]),\n };\n\n return metadata;\n }\n\n return __cancelEvent;\n}\n\n/**\n * Cancels multiple events that meet the specified criteria. <br> <br>\n * After cancellation, registration for an event is closed. To reuse the event, call Clone Event and Publish Event to publish it again. <br> <br>\n * If event cancellation notifications are enabled, canceling an event automatically triggers the sending of cancellation emails and/or push notifications to registered guests.\n */\nexport function bulkCancelEventsByFilter(\n payload: object\n): RequestOptionsFactory<any> {\n function __bulkCancelEventsByFilter({ host }: any) {\n const metadata = {\n entityFqdn: 'wix.events.v3.event',\n method: 'POST' as any,\n methodFqn:\n 'wix.events.events.v3.EventManagement.BulkCancelEventsByFilter',\n packageName: PACKAGE_NAME,\n url: resolveWixEventsEventsV3EventManagementUrl({\n protoPath: '/v3/bulk/events/cancel-by-filter',\n data: payload,\n host,\n }),\n data: payload,\n };\n\n return metadata;\n }\n\n return __bulkCancelEventsByFilter;\n}\n\n/**\n * Deletes an event. <br> <br>\n * You can retrieve the deleted event through a GDPR access request.\n */\nexport function deleteEvent(payload: object): RequestOptionsFactory<any> {\n function __deleteEvent({ host }: any) {\n const metadata = {\n entityFqdn: 'wix.events.v3.event',\n method: 'DELETE' as any,\n methodFqn: 'wix.events.events.v3.EventManagement.DeleteEvent',\n packageName: PACKAGE_NAME,\n url: resolveWixEventsEventsV3EventManagementUrl({\n protoPath: '/v3/events/{eventId}',\n data: payload,\n host,\n }),\n params: toURLSearchParams(payload),\n };\n\n return metadata;\n }\n\n return __deleteEvent;\n}\n\n/**\n * Deletes multiple events that meet the specified criteria. <br> <br>\n * You can retrieve the deleted events through a GDPR access request.\n */\nexport function bulkDeleteEventsByFilter(\n payload: object\n): RequestOptionsFactory<any> {\n function __bulkDeleteEventsByFilter({ host }: any) {\n const metadata = {\n entityFqdn: 'wix.events.v3.event',\n method: 'POST' as any,\n methodFqn:\n 'wix.events.events.v3.EventManagement.BulkDeleteEventsByFilter',\n packageName: PACKAGE_NAME,\n url: resolveWixEventsEventsV3EventManagementUrl({\n protoPath: '/v3/bulk/events/delete-by-filter',\n data: payload,\n host,\n }),\n data: payload,\n };\n\n return metadata;\n }\n\n return __bulkDeleteEventsByFilter;\n}\n\n/**\n * Creates a query to retrieve a list of events.\n *\n *\n * The `queryEvents()` method builds a query to retrieve a list of events and returns a [`EventsQueryBuilder`](https://www.wix.com/velo/reference/wix-events-v2/wixeventsv2/eventsquerybuilder) object.\n *\n * The returned object contains the query definition, which is typically used to run the query using the [`find()`](https://www.wix.com/velo/reference/wix-events-v2/wixeventsv2/eventsquerybuilder/find) method.\n *\n * You can refine the query by chaining `EventsQueryBuilder` methods onto the query. `EventsQueryBuilder` methods enable you to sort, filter, and control the results `queryEvents()` returns.\n *\n * `queryEvents()` runs with these `EventsQueryBuilder` defaults, which you can override:\n *\n * - [`skip(0)`](https://www.wix.com/velo/reference/wix-events-v2/wixeventsv2/eventsquerybuilder/skip)\n * - [`limit(50)`](https://www.wix.com/velo/reference/wix-events-v2/wixeventsv2/eventsquerybuilder/limit)\n * - [`descending(\"_createdDate\")`](https://www.wix.com/velo/reference/wix-events-v2/wixeventsv2/eventsquerybuilder/descending)\n *\n * The methods that are chained to `queryEvents()` are applied in the order they're called. For example, if you apply `ascending('title')` and then `descending('status')`, the results are sorted first by the `title`, and then, if there are multiple results with the same `title`, the items are sorted by `status`.\n */\nexport function queryEvents(payload: object): RequestOptionsFactory<any> {\n function __queryEvents({ host }: any) {\n const metadata = {\n entityFqdn: 'wix.events.v3.event',\n method: 'POST' as any,\n methodFqn: 'wix.events.events.v3.EventManagement.QueryEvents',\n packageName: PACKAGE_NAME,\n url: resolveWixEventsEventsV3EventManagementUrl({\n protoPath: '/v3/events/query',\n data: payload,\n host,\n }),\n data: payload,\n transformResponse: (payload: any) =>\n transformPaths(payload, [\n {\n transformFn: transformRESTTimestampToSDKTimestamp,\n paths: [\n { path: 'events.createdDate' },\n { path: 'events.updatedDate' },\n { path: 'events.publishedDate' },\n { path: 'events.dateAndTimeSettings.startDate' },\n { path: 'events.dateAndTimeSettings.endDate' },\n {\n path: 'events.dateAndTimeSettings.recurringEvents.individualEventDates.startDate',\n },\n {\n path: 'events.dateAndTimeSettings.recurringEvents.individualEventDates.endDate',\n },\n { path: 'events.mainImage.urlExpirationDate' },\n { path: 'events.registration.rsvp.startDate' },\n { path: 'events.registration.rsvp.endDate' },\n { path: 'events.categories.categories.createdDate' },\n { path: 'events.description.metadata.createdTimestamp' },\n { path: 'events.description.metadata.updatedTimestamp' },\n { path: 'events.badges.badges.functionUpdateDate' },\n ],\n },\n {\n transformFn: transformRESTFloatToSDKFloat,\n paths: [\n { path: 'events.location.address.geocode.latitude' },\n { path: 'events.location.address.geocode.longitude' },\n {\n path: 'events.description.nodes.galleryData.items.image.media.duration',\n },\n {\n path: 'events.description.nodes.galleryData.items.video.media.duration',\n },\n {\n path: 'events.description.nodes.galleryData.items.video.thumbnail.duration',\n },\n {\n path: 'events.description.nodes.galleryData.options.item.ratio',\n },\n { path: 'events.description.nodes.imageData.image.duration' },\n { path: 'events.description.nodes.mapData.mapSettings.lat' },\n { path: 'events.description.nodes.mapData.mapSettings.lng' },\n { path: 'events.description.nodes.pollData.poll.image.duration' },\n {\n path: 'events.description.nodes.pollData.poll.options.image.duration',\n },\n {\n path: 'events.description.nodes.pollData.design.poll.background.image.duration',\n },\n { path: 'events.description.nodes.appEmbedData.image.duration' },\n { path: 'events.description.nodes.videoData.video.duration' },\n { path: 'events.description.nodes.videoData.thumbnail.duration' },\n { path: 'events.description.nodes.audioData.audio.duration' },\n {\n path: 'events.description.nodes.audioData.coverImage.duration',\n },\n ],\n },\n ]),\n };\n\n return metadata;\n }\n\n return __queryEvents;\n}\n\n/** Counts events by status. */\nexport function countEventsByStatus(\n payload: object\n): RequestOptionsFactory<any> {\n function __countEventsByStatus({ host }: any) {\n const metadata = {\n entityFqdn: 'wix.events.v3.event',\n method: 'POST' as any,\n methodFqn: 'wix.events.events.v3.EventManagement.CountEventsByStatus',\n packageName: PACKAGE_NAME,\n url: resolveWixEventsEventsV3EventManagementUrl({\n protoPath: '/v3/events/count-by-status',\n data: payload,\n host,\n }),\n data: payload,\n };\n\n return metadata;\n }\n\n return __countEventsByStatus;\n}\n\n/** Retrieves an event by ID. */\nexport function getEvent(payload: object): RequestOptionsFactory<any> {\n function __getEvent({ host }: any) {\n const metadata = {\n entityFqdn: 'wix.events.v3.event',\n method: 'GET' as any,\n methodFqn: 'wix.events.events.v3.EventManagement.GetEvent',\n packageName: PACKAGE_NAME,\n url: resolveWixEventsEventsV3EventManagementUrl({\n protoPath: '/v3/events/{eventId}',\n data: payload,\n host,\n }),\n params: toURLSearchParams(payload),\n transformResponse: (payload: any) =>\n transformPaths(payload, [\n {\n transformFn: transformRESTTimestampToSDKTimestamp,\n paths: [\n { path: 'event.createdDate' },\n { path: 'event.updatedDate' },\n { path: 'event.publishedDate' },\n { path: 'event.dateAndTimeSettings.startDate' },\n { path: 'event.dateAndTimeSettings.endDate' },\n {\n path: 'event.dateAndTimeSettings.recurringEvents.individualEventDates.startDate',\n },\n {\n path: 'event.dateAndTimeSettings.recurringEvents.individualEventDates.endDate',\n },\n { path: 'event.mainImage.urlExpirationDate' },\n { path: 'event.registration.rsvp.startDate' },\n { path: 'event.registration.rsvp.endDate' },\n { path: 'event.categories.categories.createdDate' },\n { path: 'event.description.metadata.createdTimestamp' },\n { path: 'event.description.metadata.updatedTimestamp' },\n { path: 'event.badges.badges.functionUpdateDate' },\n ],\n },\n {\n transformFn: transformRESTFloatToSDKFloat,\n paths: [\n { path: 'event.location.address.geocode.latitude' },\n { path: 'event.location.address.geocode.longitude' },\n {\n path: 'event.description.nodes.galleryData.items.image.media.duration',\n },\n {\n path: 'event.description.nodes.galleryData.items.video.media.duration',\n },\n {\n path: 'event.description.nodes.galleryData.items.video.thumbnail.duration',\n },\n {\n path: 'event.description.nodes.galleryData.options.item.ratio',\n },\n { path: 'event.description.nodes.imageData.image.duration' },\n { path: 'event.description.nodes.mapData.mapSettings.lat' },\n { path: 'event.description.nodes.mapData.mapSettings.lng' },\n { path: 'event.description.nodes.pollData.poll.image.duration' },\n {\n path: 'event.description.nodes.pollData.poll.options.image.duration',\n },\n {\n path: 'event.description.nodes.pollData.design.poll.background.image.duration',\n },\n { path: 'event.description.nodes.appEmbedData.image.duration' },\n { path: 'event.description.nodes.videoData.video.duration' },\n { path: 'event.description.nodes.videoData.thumbnail.duration' },\n { path: 'event.description.nodes.audioData.audio.duration' },\n { path: 'event.description.nodes.audioData.coverImage.duration' },\n ],\n },\n ]),\n };\n\n return metadata;\n }\n\n return __getEvent;\n}\n\n/**\n * Retrieves an event by the slug URL.\n *\n * The slug is the end of an event URL that refers to a specific event. For example, if an event's URL is `https://example.com/events/event/{my-event-slug}`, the slug is `my-event-slug`.\n */\nexport function getEventBySlug(payload: object): RequestOptionsFactory<any> {\n function __getEventBySlug({ host }: any) {\n const metadata = {\n entityFqdn: 'wix.events.v3.event',\n method: 'GET' as any,\n methodFqn: 'wix.events.events.v3.EventManagement.GetEventBySlug',\n packageName: PACKAGE_NAME,\n url: resolveWixEventsEventsV3EventManagementUrl({\n protoPath: '/v3/events/slug/{slug}',\n data: payload,\n host,\n }),\n params: toURLSearchParams(payload),\n transformResponse: (payload: any) =>\n transformPaths(payload, [\n {\n transformFn: transformRESTTimestampToSDKTimestamp,\n paths: [\n { path: 'event.createdDate' },\n { path: 'event.updatedDate' },\n { path: 'event.publishedDate' },\n { path: 'event.dateAndTimeSettings.startDate' },\n { path: 'event.dateAndTimeSettings.endDate' },\n {\n path: 'event.dateAndTimeSettings.recurringEvents.individualEventDates.startDate',\n },\n {\n path: 'event.dateAndTimeSettings.recurringEvents.individualEventDates.endDate',\n },\n { path: 'event.mainImage.urlExpirationDate' },\n { path: 'event.registration.rsvp.startDate' },\n { path: 'event.registration.rsvp.endDate' },\n { path: 'event.categories.categories.createdDate' },\n { path: 'event.description.metadata.createdTimestamp' },\n { path: 'event.description.metadata.updatedTimestamp' },\n { path: 'event.badges.badges.functionUpdateDate' },\n ],\n },\n {\n transformFn: transformRESTFloatToSDKFloat,\n paths: [\n { path: 'event.location.address.geocode.latitude' },\n { path: 'event.location.address.geocode.longitude' },\n {\n path: 'event.description.nodes.galleryData.items.image.media.duration',\n },\n {\n path: 'event.description.nodes.galleryData.items.video.media.duration',\n },\n {\n path: 'event.description.nodes.galleryData.items.video.thumbnail.duration',\n },\n {\n path: 'event.description.nodes.galleryData.options.item.ratio',\n },\n { path: 'event.description.nodes.imageData.image.duration' },\n { path: 'event.description.nodes.mapData.mapSettings.lat' },\n { path: 'event.description.nodes.mapData.mapSettings.lng' },\n { path: 'event.description.nodes.pollData.poll.image.duration' },\n {\n path: 'event.description.nodes.pollData.poll.options.image.duration',\n },\n {\n path: 'event.description.nodes.pollData.design.poll.background.image.duration',\n },\n { path: 'event.description.nodes.appEmbedData.image.duration' },\n { path: 'event.description.nodes.videoData.video.duration' },\n { path: 'event.description.nodes.videoData.thumbnail.duration' },\n { path: 'event.description.nodes.audioData.audio.duration' },\n { path: 'event.description.nodes.audioData.coverImage.duration' },\n ],\n },\n ]),\n };\n\n return metadata;\n }\n\n return __getEventBySlug;\n}\n","import * as ambassadorWixEventsV3Event from './events-v3-event-wix-events-v-2.http.js';\nimport * as ambassadorWixEventsV3EventTypes from './events-v3-event-wix-events-v-2.types.js';\nimport * as ambassadorWixEventsV3EventUniversalTypes from './events-v3-event-wix-events-v-2.universal.js';\n\nexport type __PublicMethodMetaInfo<\n K = string,\n M = unknown,\n T = unknown,\n S = unknown,\n Q = unknown,\n R = unknown\n> = {\n getUrl: (context: any) => string;\n httpMethod: K;\n path: string;\n pathParams: M;\n __requestType: T;\n __originalRequestType: S;\n __responseType: Q;\n __originalResponseType: R;\n};\n\nexport function createEvent(): __PublicMethodMetaInfo<\n 'POST',\n {},\n ambassadorWixEventsV3EventUniversalTypes.CreateEventRequest,\n ambassadorWixEventsV3EventTypes.CreateEventRequest,\n ambassadorWixEventsV3EventUniversalTypes.CreateEventResponse,\n ambassadorWixEventsV3EventTypes.CreateEventResponse\n> {\n const payload = {} as any;\n\n const getRequestOptions = ambassadorWixEventsV3Event.createEvent(payload);\n\n const getUrl = (context: any): string => {\n const { url } = getRequestOptions(context);\n return url!;\n };\n\n return {\n getUrl,\n httpMethod: 'POST',\n path: '/v3/events',\n pathParams: {},\n __requestType: null as any,\n __originalRequestType: null as any,\n __responseType: null as any,\n __originalResponseType: null as any,\n };\n}\n\nexport function cloneEvent(): __PublicMethodMetaInfo<\n 'POST',\n { eventId: string },\n ambassadorWixEventsV3EventUniversalTypes.CloneEventRequest,\n ambassadorWixEventsV3EventTypes.CloneEventRequest,\n ambassadorWixEventsV3EventUniversalTypes.CloneEventResponse,\n ambassadorWixEventsV3EventTypes.CloneEventResponse\n> {\n const payload = { eventId: ':eventId' } as any;\n\n const getRequestOptions = ambassadorWixEventsV3Event.cloneEvent(payload);\n\n const getUrl = (context: any): string => {\n const { url } = getRequestOptions(context);\n return url!;\n };\n\n return {\n getUrl,\n httpMethod: 'POST',\n path: '/v3/events/{eventId}/clone',\n pathParams: { eventId: 'eventId' },\n __requestType: null as any,\n __originalRequestType: null as any,\n __responseType: null as any,\n __originalResponseType: null as any,\n };\n}\n\nexport function updateEvent(): __PublicMethodMetaInfo<\n 'PATCH',\n { eventId: string },\n ambassadorWixEventsV3EventUniversalTypes.UpdateEventRequest,\n ambassadorWixEventsV3EventTypes.UpdateEventRequest,\n ambassadorWixEventsV3EventUniversalTypes.UpdateEventResponse,\n ambassadorWixEventsV3EventTypes.UpdateEventResponse\n> {\n const payload = { event: { id: ':eventId' } } as any;\n\n const getRequestOptions = ambassadorWixEventsV3Event.updateEvent(payload);\n\n const getUrl = (context: any): string => {\n const { url } = getRequestOptions(context);\n return url!;\n };\n\n return {\n getUrl,\n httpMethod: 'PATCH',\n path: '/v3/events/{event.id}',\n pathParams: { eventId: 'eventId' },\n __requestType: null as any,\n __originalRequestType: null as any,\n __responseType: null as any,\n __originalResponseType: null as any,\n };\n}\n\nexport function publishDraftEvent(): __PublicMethodMetaInfo<\n 'POST',\n { eventId: string },\n ambassadorWixEventsV3EventUniversalTypes.PublishDraftEventRequest,\n ambassadorWixEventsV3EventTypes.PublishDraftEventRequest,\n ambassadorWixEventsV3EventUniversalTypes.PublishDraftEventResponse,\n ambassadorWixEventsV3EventTypes.PublishDraftEventResponse\n> {\n const payload = { eventId: ':eventId' } as any;\n\n const getRequestOptions =\n ambassadorWixEventsV3Event.publishDraftEvent(payload);\n\n const getUrl = (context: any): string => {\n const { url } = getRequestOptions(context);\n return url!;\n };\n\n return {\n getUrl,\n httpMethod: 'POST',\n path: '/v3/events/{eventId}/publish',\n pathParams: { eventId: 'eventId' },\n __requestType: null as any,\n __originalRequestType: null as any,\n __responseType: null as any,\n __originalResponseType: null as any,\n };\n}\n\nexport function cancelEvent(): __PublicMethodMetaInfo<\n 'POST',\n { eventId: string },\n ambassadorWixEventsV3EventUniversalTypes.CancelEventRequest,\n ambassadorWixEventsV3EventTypes.CancelEventRequest,\n ambassadorWixEventsV3EventUniversalTypes.CancelEventResponse,\n ambassadorWixEventsV3EventTypes.CancelEventResponse\n> {\n const payload = { eventId: ':eventId' } as any;\n\n const getRequestOptions = ambassadorWixEventsV3Event.cancelEvent(payload);\n\n const getUrl = (context: any): string => {\n const { url } = getRequestOptions(context);\n return url!;\n };\n\n return {\n getUrl,\n httpMethod: 'POST',\n path: '/v3/events/{eventId}/cancel',\n pathParams: { eventId: 'eventId' },\n __requestType: null as any,\n __originalRequestType: null as any,\n __responseType: null as any,\n __originalResponseType: null as any,\n };\n}\n\nexport function bulkCancelEventsByFilter(): __PublicMethodMetaInfo<\n 'POST',\n {},\n ambassadorWixEventsV3EventUniversalTypes.BulkCancelEventsByFilterRequest,\n ambassadorWixEventsV3EventTypes.BulkCancelEventsByFilterRequest,\n ambassadorWixEventsV3EventUniversalTypes.BulkCancelEventsByFilterResponse,\n ambassadorWixEventsV3EventTypes.BulkCancelEventsByFilterResponse\n> {\n const payload = {} as any;\n\n const getRequestOptions =\n ambassadorWixEventsV3Event.bulkCancelEventsByFilter(payload);\n\n const getUrl = (context: any): string => {\n const { url } = getRequestOptions(context);\n return url!;\n };\n\n return {\n getUrl,\n httpMethod: 'POST',\n path: '/v3/bulk/events/cancel-by-filter',\n pathParams: {},\n __requestType: null as any,\n __originalRequestType: null as any,\n __responseType: null as any,\n __originalResponseType: null as any,\n };\n}\n\nexport function deleteEvent(): __PublicMethodMetaInfo<\n 'DELETE',\n { eventId: string },\n ambassadorWixEventsV3EventUniversalTypes.DeleteEventRequest,\n ambassadorWixEventsV3EventTypes.DeleteEventRequest,\n ambassadorWixEventsV3EventUniversalTypes.DeleteEventResponse,\n ambassadorWixEventsV3EventTypes.DeleteEventResponse\n> {\n const payload = { eventId: ':eventId' } as any;\n\n const getRequestOptions = ambassadorWixEventsV3Event.deleteEvent(payload);\n\n const getUrl = (context: any): string => {\n const { url } = getRequestOptions(context);\n return url!;\n };\n\n return {\n getUrl,\n httpMethod: 'DELETE',\n path: '/v3/events/{eventId}',\n pathParams: { eventId: 'eventId' },\n __requestType: null as any,\n __originalRequestType: null as any,\n __responseType: null as any,\n __originalResponseType: null as any,\n };\n}\n\nexport function bulkDeleteEventsByFilter(): __PublicMethodMetaInfo<\n 'POST',\n {},\n ambassadorWixEventsV3EventUniversalTypes.BulkDeleteEventsByFilterRequest,\n ambassadorWixEventsV3EventTypes.BulkDeleteEventsByFilterRequest,\n ambassadorWixEventsV3EventUniversalTypes.BulkDeleteEventsByFilterResponse,\n ambassadorWixEventsV3EventTypes.BulkDeleteEventsByFilterResponse\n> {\n const payload = {} as any;\n\n const getRequestOptions =\n ambassadorWixEventsV3Event.bulkDeleteEventsByFilter(payload);\n\n const getUrl = (context: any): string => {\n const { url } = getRequestOptions(context);\n return url!;\n };\n\n return {\n getUrl,\n httpMethod: 'POST',\n path: '/v3/bulk/events/delete-by-filter',\n pathParams: {},\n __requestType: null as any,\n __originalRequestType: null as any,\n __responseType: null as any,\n __originalResponseType: null as any,\n };\n}\n\nexport function queryEvents(): __PublicMethodMetaInfo<\n 'POST',\n {},\n ambassadorWixEventsV3EventUniversalTypes.QueryEventsRequest,\n ambassadorWixEventsV3EventTypes.QueryEventsRequest,\n ambassadorWixEventsV3EventUniversalTypes.QueryEventsResponse,\n ambassadorWixEventsV3EventTypes.QueryEventsResponse\n> {\n const payload = {} as any;\n\n const getRequestOptions = ambassadorWixEventsV3Event.queryEvents(payload);\n\n const getUrl = (context: any): string => {\n const { url } = getRequestOptions(context);\n return url!;\n };\n\n return {\n getUrl,\n httpMethod: 'POST',\n path: '/v3/events/query',\n pathParams: {},\n __requestType: null as any,\n __originalRequestType: null as any,\n __responseType: null as any,\n __originalResponseType: null as any,\n };\n}\n\nexport function countEventsByStatus(): __PublicMethodMetaInfo<\n 'POST',\n {},\n ambassadorWixEventsV3EventUniversalTypes.CountEventsByStatusRequest,\n ambassadorWixEventsV3EventTypes.CountEventsByStatusRequest,\n ambassadorWixEventsV3EventUniversalTypes.CountEventsByStatusResponse,\n ambassadorWixEventsV3EventTypes.CountEventsByStatusResponse\n> {\n const payload = {} as any;\n\n const getRequestOptions =\n ambassadorWixEventsV3Event.countEventsByStatus(payload);\n\n const getUrl = (context: any): string => {\n const { url } = getRequestOptions(context);\n return url!;\n };\n\n return {\n getUrl,\n httpMethod: 'POST',\n path: '/v3/events/count-by-status',\n pathParams: {},\n __requestType: null as any,\n __originalRequestType: null as any,\n __responseType: null as any,\n __originalResponseType: null as any,\n };\n}\n\nexport function getEvent(): __PublicMethodMetaInfo<\n 'GET',\n { eventId: string },\n ambassadorWixEventsV3EventUniversalTypes.GetEventRequest,\n ambassadorWixEventsV3EventTypes.GetEventRequest,\n ambassadorWixEventsV3EventUniversalTypes.GetEventResponse,\n ambassadorWixEventsV3EventTypes.GetEventResponse\n> {\n const payload = { eventId: ':eventId' } as any;\n\n const getRequestOptions = ambassadorWixEventsV3Event.getEvent(payload);\n\n const getUrl = (context: any): string => {\n const { url } = getRequestOptions(context);\n return url!;\n };\n\n return {\n getUrl,\n httpMethod: 'GET',\n path: '/v3/events/{eventId}',\n pathParams: { eventId: 'eventId' },\n __requestType: null as any,\n __originalRequestType: null as any,\n __responseType: null as any,\n __originalResponseType: null as any,\n };\n}\n\nexport function getEventBySlug(): __PublicMethodMetaInfo<\n 'GET',\n { slug: string },\n ambassadorWixEventsV3EventUniversalTypes.GetEventBySlugRequest,\n ambassadorWixEventsV3EventTypes.GetEventBySlugRequest,\n ambassadorWixEventsV3EventUniversalTypes.GetEventBySlugResponse,\n ambassadorWixEventsV3EventTypes.GetEventBySlugResponse\n> {\n const payload = { slug: ':slug' } as any;\n\n const getRequestOptions = ambassadorWixEventsV3Event.getEventBySlug(payload);\n\n const getUrl = (context: any): string => {\n const { url } = getRequestOptions(context);\n return url!;\n };\n\n return {\n getUrl,\n httpMethod: 'GET',\n path: '/v3/events/slug/{slug}',\n pathParams: { slug: 'slug' },\n __requestType: null as any,\n __originalRequestType: null as any,\n __responseType: null as any,\n __originalResponseType: null as any,\n };\n}\n"],"mappings":"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","names":["bulkCancelEventsByFilter","bulkDeleteEventsByFilter","cancelEvent","cloneEvent","countEventsByStatus","createEvent","deleteEvent","getEvent","getEventBySlug","publishDraftEvent","queryEvents","updateEvent","import_float","import_timestamp","import_rest_modules","payload","createEvent","cloneEvent","updateEvent","publishDraftEvent","cancelEvent","bulkCancelEventsByFilter","deleteEvent","bulkDeleteEventsByFilter","queryEvents","countEventsByStatus","getEvent","getEventBySlug"]}
1
+ {"version":3,"sources":["../../meta.ts","../../src/events-v3-event-wix-events-v-2.http.ts","../../src/events-v3-event-wix-events-v-2.meta.ts"],"sourcesContent":["export * from './src/events-v3-event-wix-events-v-2.meta.js';\n","import { toURLSearchParams } from '@wix/sdk-runtime/rest-modules';\nimport { transformSDKFloatToRESTFloat } from '@wix/sdk-runtime/transformations/float';\nimport { transformRESTFloatToSDKFloat } from '@wix/sdk-runtime/transformations/float';\nimport { transformSDKTimestampToRESTTimestamp } from '@wix/sdk-runtime/transformations/timestamp';\nimport { transformRESTTimestampToSDKTimestamp } from '@wix/sdk-runtime/transformations/timestamp';\nimport { transformSDKFieldMaskToRESTFieldMask } from '@wix/sdk-runtime/transformations/field-mask';\nimport { transformPaths } from '@wix/sdk-runtime/transformations/transform-paths';\nimport { resolveUrl } from '@wix/sdk-runtime/rest-modules';\nimport { ResolveUrlOpts } from '@wix/sdk-runtime/rest-modules';\nimport { RequestOptionsFactory } from '@wix/sdk-types';\n\nfunction resolveWixEventsEventsV3EventManagementUrl(\n opts: Omit<ResolveUrlOpts, 'domainToMappings'>\n) {\n const domainToMappings = {\n 'www.wixapis.com': [\n {\n srcPath: '/events/v3/events',\n destPath: '/v3/events',\n },\n {\n srcPath: '/events/v3/bulk/events',\n destPath: '/v3/bulk/events',\n },\n ],\n 'api._api_base_domain_': [\n {\n srcPath: '/events-events-v3-adapter',\n destPath: '',\n },\n ],\n 'manage._base_domain_': [\n {\n srcPath: '/_api/events-events-v3-adapter',\n destPath: '',\n },\n ],\n 'editor.wixapps.net': [\n {\n srcPath: '/_api/events-events-v3-adapter',\n destPath: '',\n },\n ],\n 'editor._base_domain_': [\n {\n srcPath: '/_api/events-events-v3-adapter',\n destPath: '',\n },\n ],\n 'blocks._base_domain_': [\n {\n srcPath: '/_api/events-events-v3-adapter',\n destPath: '',\n },\n ],\n 'create.editorx': [\n {\n srcPath: '/_api/events-events-v3-adapter',\n destPath: '',\n },\n ],\n '*.dev.wix-code.com': [\n {\n srcPath: '/_api/events-events-v3-adapter',\n destPath: '',\n },\n ],\n _: [\n {\n srcPath: '/_api/events-events-v3-adapter',\n destPath: '',\n },\n ],\n };\n\n return resolveUrl(Object.assign(opts, { domainToMappings }));\n}\n\nconst PACKAGE_NAME = '@wix/auto_sdk_events_wix-events-v-2';\n\n/**\n * Creates an event. <br> <br>\n * The event includes a default registration form in the selected language, which consists of input fields for first name, last name, and email. See the Registration Form API ([SDK](https://dev.wix.com/docs/sdk/backend-modules/events/forms/introduction) | [REST](https://dev.wix.com/docs/rest/business-solutions/events/form/about-the-registration-form-api)) for more information. <br> <br>\n * You can create the event as a draft by setting `draft` to `true`. Otherwise, the event is published right away. <br> <br>\n * The event is automatically set up to send daily summary reports of new guests to your business email.\n */\nexport function createEvent(payload: object): RequestOptionsFactory<any> {\n function __createEvent({ host }: any) {\n const serializedData = transformPaths(payload, [\n {\n transformFn: transformSDKTimestampToRESTTimestamp,\n paths: [\n { path: 'event.createdDate' },\n { path: 'event.updatedDate' },\n { path: 'event.publishedDate' },\n { path: 'event.dateAndTimeSettings.startDate' },\n { path: 'event.dateAndTimeSettings.endDate' },\n {\n path: 'event.dateAndTimeSettings.recurringEvents.individualEventDates.startDate',\n },\n {\n path: 'event.dateAndTimeSettings.recurringEvents.individualEventDates.endDate',\n },\n { path: 'event.mainImage.urlExpirationDate' },\n { path: 'event.registration.rsvp.startDate' },\n { path: 'event.registration.rsvp.endDate' },\n { path: 'event.categories.categories.createdDate' },\n { path: 'event.description.metadata.createdTimestamp' },\n { path: 'event.description.metadata.updatedTimestamp' },\n { path: 'event.badges.badges.functionUpdateDate' },\n ],\n },\n {\n transformFn: transformSDKFloatToRESTFloat,\n paths: [\n { path: 'event.location.address.geocode.latitude' },\n { path: 'event.location.address.geocode.longitude' },\n {\n path: 'event.description.nodes.galleryData.items.image.media.duration',\n },\n {\n path: 'event.description.nodes.galleryData.items.video.media.duration',\n },\n {\n path: 'event.description.nodes.galleryData.items.video.thumbnail.duration',\n },\n { path: 'event.description.nodes.galleryData.options.item.ratio' },\n { path: 'event.description.nodes.imageData.image.duration' },\n { path: 'event.description.nodes.mapData.mapSettings.lat' },\n { path: 'event.description.nodes.mapData.mapSettings.lng' },\n { path: 'event.description.nodes.pollData.poll.image.duration' },\n {\n path: 'event.description.nodes.pollData.poll.options.image.duration',\n },\n {\n path: 'event.description.nodes.pollData.design.poll.background.image.duration',\n },\n { path: 'event.description.nodes.appEmbedData.image.duration' },\n { path: 'event.description.nodes.videoData.video.duration' },\n { path: 'event.description.nodes.videoData.thumbnail.duration' },\n { path: 'event.description.nodes.audioData.audio.duration' },\n { path: 'event.description.nodes.audioData.coverImage.duration' },\n ],\n },\n ]);\n const metadata = {\n entityFqdn: 'wix.events.v3.event',\n method: 'POST' as any,\n methodFqn: 'wix.events.events.v3.EventManagement.CreateEvent',\n packageName: PACKAGE_NAME,\n migrationOptions: {\n optInTransformResponse: true,\n },\n url: resolveWixEventsEventsV3EventManagementUrl({\n protoPath: '/v3/events',\n data: serializedData,\n host,\n }),\n data: serializedData,\n transformResponse: (payload: any) =>\n transformPaths(payload, [\n {\n transformFn: transformRESTTimestampToSDKTimestamp,\n paths: [\n { path: 'event.createdDate' },\n { path: 'event.updatedDate' },\n { path: 'event.publishedDate' },\n { path: 'event.dateAndTimeSettings.startDate' },\n { path: 'event.dateAndTimeSettings.endDate' },\n {\n path: 'event.dateAndTimeSettings.recurringEvents.individualEventDates.startDate',\n },\n {\n path: 'event.dateAndTimeSettings.recurringEvents.individualEventDates.endDate',\n },\n { path: 'event.mainImage.urlExpirationDate' },\n { path: 'event.registration.rsvp.startDate' },\n { path: 'event.registration.rsvp.endDate' },\n { path: 'event.categories.categories.createdDate' },\n { path: 'event.description.metadata.createdTimestamp' },\n { path: 'event.description.metadata.updatedTimestamp' },\n { path: 'event.badges.badges.functionUpdateDate' },\n ],\n },\n {\n transformFn: transformRESTFloatToSDKFloat,\n paths: [\n { path: 'event.location.address.geocode.latitude' },\n { path: 'event.location.address.geocode.longitude' },\n {\n path: 'event.description.nodes.galleryData.items.image.media.duration',\n },\n {\n path: 'event.description.nodes.galleryData.items.video.media.duration',\n },\n {\n path: 'event.description.nodes.galleryData.items.video.thumbnail.duration',\n },\n {\n path: 'event.description.nodes.galleryData.options.item.ratio',\n },\n { path: 'event.description.nodes.imageData.image.duration' },\n { path: 'event.description.nodes.mapData.mapSettings.lat' },\n { path: 'event.description.nodes.mapData.mapSettings.lng' },\n { path: 'event.description.nodes.pollData.poll.image.duration' },\n {\n path: 'event.description.nodes.pollData.poll.options.image.duration',\n },\n {\n path: 'event.description.nodes.pollData.design.poll.background.image.duration',\n },\n { path: 'event.description.nodes.appEmbedData.image.duration' },\n { path: 'event.description.nodes.videoData.video.duration' },\n { path: 'event.description.nodes.videoData.thumbnail.duration' },\n { path: 'event.description.nodes.audioData.audio.duration' },\n { path: 'event.description.nodes.audioData.coverImage.duration' },\n ],\n },\n ]),\n };\n\n return metadata;\n }\n\n return __createEvent;\n}\n\n/**\n * Clones an event, including the registration form, notifications, multilingual translations and ticket configuration from the original event. <br> <br>\n * The new event's date is automatically set to 14 days from the original event date. <br> <br>\n * If an event with the same `title` already exists, the new event's `title` gets a sequence number. For example, if you clone an event named `\"Leather Crafting 101\"`, the new event's title is `\"Leather Crafting 101 (1)\"`. <br> <br>\n * You can change the required entity field values while cloning an event.\n */\nexport function cloneEvent(payload: object): RequestOptionsFactory<any> {\n function __cloneEvent({ host }: any) {\n const serializedData = transformPaths(payload, [\n {\n transformFn: transformSDKFieldMaskToRESTFieldMask,\n paths: [{ path: 'fieldmask' }],\n },\n {\n transformFn: transformSDKTimestampToRESTTimestamp,\n paths: [\n { path: 'event.createdDate' },\n { path: 'event.updatedDate' },\n { path: 'event.publishedDate' },\n { path: 'event.dateAndTimeSettings.startDate' },\n { path: 'event.dateAndTimeSettings.endDate' },\n {\n path: 'event.dateAndTimeSettings.recurringEvents.individualEventDates.startDate',\n },\n {\n path: 'event.dateAndTimeSettings.recurringEvents.individualEventDates.endDate',\n },\n { path: 'event.mainImage.urlExpirationDate' },\n { path: 'event.registration.rsvp.startDate' },\n { path: 'event.registration.rsvp.endDate' },\n { path: 'event.categories.categories.createdDate' },\n { path: 'event.description.metadata.createdTimestamp' },\n { path: 'event.description.metadata.updatedTimestamp' },\n { path: 'event.badges.badges.functionUpdateDate' },\n ],\n },\n {\n transformFn: transformSDKFloatToRESTFloat,\n paths: [\n { path: 'event.location.address.geocode.latitude' },\n { path: 'event.location.address.geocode.longitude' },\n {\n path: 'event.description.nodes.galleryData.items.image.media.duration',\n },\n {\n path: 'event.description.nodes.galleryData.items.video.media.duration',\n },\n {\n path: 'event.description.nodes.galleryData.items.video.thumbnail.duration',\n },\n { path: 'event.description.nodes.galleryData.options.item.ratio' },\n { path: 'event.description.nodes.imageData.image.duration' },\n { path: 'event.description.nodes.mapData.mapSettings.lat' },\n { path: 'event.description.nodes.mapData.mapSettings.lng' },\n { path: 'event.description.nodes.pollData.poll.image.duration' },\n {\n path: 'event.description.nodes.pollData.poll.options.image.duration',\n },\n {\n path: 'event.description.nodes.pollData.design.poll.background.image.duration',\n },\n { path: 'event.description.nodes.appEmbedData.image.duration' },\n { path: 'event.description.nodes.videoData.video.duration' },\n { path: 'event.description.nodes.videoData.thumbnail.duration' },\n { path: 'event.description.nodes.audioData.audio.duration' },\n { path: 'event.description.nodes.audioData.coverImage.duration' },\n ],\n },\n ]);\n const metadata = {\n entityFqdn: 'wix.events.v3.event',\n method: 'POST' as any,\n methodFqn: 'wix.events.events.v3.EventManagement.CloneEvent',\n packageName: PACKAGE_NAME,\n migrationOptions: {\n optInTransformResponse: true,\n },\n url: resolveWixEventsEventsV3EventManagementUrl({\n protoPath: '/v3/events/{eventId}/clone',\n data: serializedData,\n host,\n }),\n data: serializedData,\n transformResponse: (payload: any) =>\n transformPaths(payload, [\n {\n transformFn: transformRESTTimestampToSDKTimestamp,\n paths: [\n { path: 'event.createdDate' },\n { path: 'event.updatedDate' },\n { path: 'event.publishedDate' },\n { path: 'event.dateAndTimeSettings.startDate' },\n { path: 'event.dateAndTimeSettings.endDate' },\n {\n path: 'event.dateAndTimeSettings.recurringEvents.individualEventDates.startDate',\n },\n {\n path: 'event.dateAndTimeSettings.recurringEvents.individualEventDates.endDate',\n },\n { path: 'event.mainImage.urlExpirationDate' },\n { path: 'event.registration.rsvp.startDate' },\n { path: 'event.registration.rsvp.endDate' },\n { path: 'event.categories.categories.createdDate' },\n { path: 'event.description.metadata.createdTimestamp' },\n { path: 'event.description.metadata.updatedTimestamp' },\n { path: 'event.badges.badges.functionUpdateDate' },\n ],\n },\n {\n transformFn: transformRESTFloatToSDKFloat,\n paths: [\n { path: 'event.location.address.geocode.latitude' },\n { path: 'event.location.address.geocode.longitude' },\n {\n path: 'event.description.nodes.galleryData.items.image.media.duration',\n },\n {\n path: 'event.description.nodes.galleryData.items.video.media.duration',\n },\n {\n path: 'event.description.nodes.galleryData.items.video.thumbnail.duration',\n },\n {\n path: 'event.description.nodes.galleryData.options.item.ratio',\n },\n { path: 'event.description.nodes.imageData.image.duration' },\n { path: 'event.description.nodes.mapData.mapSettings.lat' },\n { path: 'event.description.nodes.mapData.mapSettings.lng' },\n { path: 'event.description.nodes.pollData.poll.image.duration' },\n {\n path: 'event.description.nodes.pollData.poll.options.image.duration',\n },\n {\n path: 'event.description.nodes.pollData.design.poll.background.image.duration',\n },\n { path: 'event.description.nodes.appEmbedData.image.duration' },\n { path: 'event.description.nodes.videoData.video.duration' },\n { path: 'event.description.nodes.videoData.thumbnail.duration' },\n { path: 'event.description.nodes.audioData.audio.duration' },\n { path: 'event.description.nodes.audioData.coverImage.duration' },\n ],\n },\n ]),\n };\n\n return metadata;\n }\n\n return __cloneEvent;\n}\n\n/** Updates an event. */\nexport function updateEvent(payload: object): RequestOptionsFactory<any> {\n function __updateEvent({ host }: any) {\n const serializedData = transformPaths(payload, [\n {\n transformFn: transformSDKFieldMaskToRESTFieldMask,\n paths: [{ path: 'fieldmask' }],\n },\n {\n transformFn: transformSDKTimestampToRESTTimestamp,\n paths: [\n { path: 'event.createdDate' },\n { path: 'event.updatedDate' },\n { path: 'event.publishedDate' },\n { path: 'event.dateAndTimeSettings.startDate' },\n { path: 'event.dateAndTimeSettings.endDate' },\n {\n path: 'event.dateAndTimeSettings.recurringEvents.individualEventDates.startDate',\n },\n {\n path: 'event.dateAndTimeSettings.recurringEvents.individualEventDates.endDate',\n },\n { path: 'event.mainImage.urlExpirationDate' },\n { path: 'event.registration.rsvp.startDate' },\n { path: 'event.registration.rsvp.endDate' },\n { path: 'event.categories.categories.createdDate' },\n { path: 'event.description.metadata.createdTimestamp' },\n { path: 'event.description.metadata.updatedTimestamp' },\n { path: 'event.badges.badges.functionUpdateDate' },\n ],\n },\n {\n transformFn: transformSDKFloatToRESTFloat,\n paths: [\n { path: 'event.location.address.geocode.latitude' },\n { path: 'event.location.address.geocode.longitude' },\n {\n path: 'event.description.nodes.galleryData.items.image.media.duration',\n },\n {\n path: 'event.description.nodes.galleryData.items.video.media.duration',\n },\n {\n path: 'event.description.nodes.galleryData.items.video.thumbnail.duration',\n },\n { path: 'event.description.nodes.galleryData.options.item.ratio' },\n { path: 'event.description.nodes.imageData.image.duration' },\n { path: 'event.description.nodes.mapData.mapSettings.lat' },\n { path: 'event.description.nodes.mapData.mapSettings.lng' },\n { path: 'event.description.nodes.pollData.poll.image.duration' },\n {\n path: 'event.description.nodes.pollData.poll.options.image.duration',\n },\n {\n path: 'event.description.nodes.pollData.design.poll.background.image.duration',\n },\n { path: 'event.description.nodes.appEmbedData.image.duration' },\n { path: 'event.description.nodes.videoData.video.duration' },\n { path: 'event.description.nodes.videoData.thumbnail.duration' },\n { path: 'event.description.nodes.audioData.audio.duration' },\n { path: 'event.description.nodes.audioData.coverImage.duration' },\n ],\n },\n ]);\n const metadata = {\n entityFqdn: 'wix.events.v3.event',\n method: 'PATCH' as any,\n methodFqn: 'wix.events.events.v3.EventManagement.UpdateEvent',\n packageName: PACKAGE_NAME,\n migrationOptions: {\n optInTransformResponse: true,\n },\n url: resolveWixEventsEventsV3EventManagementUrl({\n protoPath: '/v3/events/{event.id}',\n data: serializedData,\n host,\n }),\n data: serializedData,\n transformResponse: (payload: any) =>\n transformPaths(payload, [\n {\n transformFn: transformRESTTimestampToSDKTimestamp,\n paths: [\n { path: 'event.createdDate' },\n { path: 'event.updatedDate' },\n { path: 'event.publishedDate' },\n { path: 'event.dateAndTimeSettings.startDate' },\n { path: 'event.dateAndTimeSettings.endDate' },\n {\n path: 'event.dateAndTimeSettings.recurringEvents.individualEventDates.startDate',\n },\n {\n path: 'event.dateAndTimeSettings.recurringEvents.individualEventDates.endDate',\n },\n { path: 'event.mainImage.urlExpirationDate' },\n { path: 'event.registration.rsvp.startDate' },\n { path: 'event.registration.rsvp.endDate' },\n { path: 'event.categories.categories.createdDate' },\n { path: 'event.description.metadata.createdTimestamp' },\n { path: 'event.description.metadata.updatedTimestamp' },\n { path: 'event.badges.badges.functionUpdateDate' },\n ],\n },\n {\n transformFn: transformRESTFloatToSDKFloat,\n paths: [\n { path: 'event.location.address.geocode.latitude' },\n { path: 'event.location.address.geocode.longitude' },\n {\n path: 'event.description.nodes.galleryData.items.image.media.duration',\n },\n {\n path: 'event.description.nodes.galleryData.items.video.media.duration',\n },\n {\n path: 'event.description.nodes.galleryData.items.video.thumbnail.duration',\n },\n {\n path: 'event.description.nodes.galleryData.options.item.ratio',\n },\n { path: 'event.description.nodes.imageData.image.duration' },\n { path: 'event.description.nodes.mapData.mapSettings.lat' },\n { path: 'event.description.nodes.mapData.mapSettings.lng' },\n { path: 'event.description.nodes.pollData.poll.image.duration' },\n {\n path: 'event.description.nodes.pollData.poll.options.image.duration',\n },\n {\n path: 'event.description.nodes.pollData.design.poll.background.image.duration',\n },\n { path: 'event.description.nodes.appEmbedData.image.duration' },\n { path: 'event.description.nodes.videoData.video.duration' },\n { path: 'event.description.nodes.videoData.thumbnail.duration' },\n { path: 'event.description.nodes.audioData.audio.duration' },\n { path: 'event.description.nodes.audioData.coverImage.duration' },\n ],\n },\n ]),\n };\n\n return metadata;\n }\n\n return __updateEvent;\n}\n\n/**\n * Publishes a draft event to your live site. Once published, the event's status changes from `\"DRAFT\"` to `\"UPCOMING\"`. <br> <br>\n * It's impossible to revert the `\"DRAFT\"` status after publishing. The only option is to clone the event, then delete the original.\n */\nexport function publishDraftEvent(payload: object): RequestOptionsFactory<any> {\n function __publishDraftEvent({ host }: any) {\n const metadata = {\n entityFqdn: 'wix.events.v3.event',\n method: 'POST' as any,\n methodFqn: 'wix.events.events.v3.EventManagement.PublishDraftEvent',\n packageName: PACKAGE_NAME,\n migrationOptions: {\n optInTransformResponse: true,\n },\n url: resolveWixEventsEventsV3EventManagementUrl({\n protoPath: '/v3/events/{eventId}/publish',\n data: payload,\n host,\n }),\n data: payload,\n transformResponse: (payload: any) =>\n transformPaths(payload, [\n {\n transformFn: transformRESTTimestampToSDKTimestamp,\n paths: [\n { path: 'event.createdDate' },\n { path: 'event.updatedDate' },\n { path: 'event.publishedDate' },\n { path: 'event.dateAndTimeSettings.startDate' },\n { path: 'event.dateAndTimeSettings.endDate' },\n {\n path: 'event.dateAndTimeSettings.recurringEvents.individualEventDates.startDate',\n },\n {\n path: 'event.dateAndTimeSettings.recurringEvents.individualEventDates.endDate',\n },\n { path: 'event.mainImage.urlExpirationDate' },\n { path: 'event.registration.rsvp.startDate' },\n { path: 'event.registration.rsvp.endDate' },\n { path: 'event.categories.categories.createdDate' },\n { path: 'event.description.metadata.createdTimestamp' },\n { path: 'event.description.metadata.updatedTimestamp' },\n { path: 'event.badges.badges.functionUpdateDate' },\n ],\n },\n {\n transformFn: transformRESTFloatToSDKFloat,\n paths: [\n { path: 'event.location.address.geocode.latitude' },\n { path: 'event.location.address.geocode.longitude' },\n {\n path: 'event.description.nodes.galleryData.items.image.media.duration',\n },\n {\n path: 'event.description.nodes.galleryData.items.video.media.duration',\n },\n {\n path: 'event.description.nodes.galleryData.items.video.thumbnail.duration',\n },\n {\n path: 'event.description.nodes.galleryData.options.item.ratio',\n },\n { path: 'event.description.nodes.imageData.image.duration' },\n { path: 'event.description.nodes.mapData.mapSettings.lat' },\n { path: 'event.description.nodes.mapData.mapSettings.lng' },\n { path: 'event.description.nodes.pollData.poll.image.duration' },\n {\n path: 'event.description.nodes.pollData.poll.options.image.duration',\n },\n {\n path: 'event.description.nodes.pollData.design.poll.background.image.duration',\n },\n { path: 'event.description.nodes.appEmbedData.image.duration' },\n { path: 'event.description.nodes.videoData.video.duration' },\n { path: 'event.description.nodes.videoData.thumbnail.duration' },\n { path: 'event.description.nodes.audioData.audio.duration' },\n { path: 'event.description.nodes.audioData.coverImage.duration' },\n ],\n },\n ]),\n };\n\n return metadata;\n }\n\n return __publishDraftEvent;\n}\n\n/**\n * Cancels an event. <br> <br>\n * After cancellation, registration for an event is closed. To reuse the event, call Clone Event and Publish Event to publish it again. <br> <br>\n * If event cancellation notifications are enabled, canceling an event automatically triggers the sending of cancellation emails and/or push notifications to registered guests.\n */\nexport function cancelEvent(payload: object): RequestOptionsFactory<any> {\n function __cancelEvent({ host }: any) {\n const metadata = {\n entityFqdn: 'wix.events.v3.event',\n method: 'POST' as any,\n methodFqn: 'wix.events.events.v3.EventManagement.CancelEvent',\n packageName: PACKAGE_NAME,\n migrationOptions: {\n optInTransformResponse: true,\n },\n url: resolveWixEventsEventsV3EventManagementUrl({\n protoPath: '/v3/events/{eventId}/cancel',\n data: payload,\n host,\n }),\n data: payload,\n transformResponse: (payload: any) =>\n transformPaths(payload, [\n {\n transformFn: transformRESTTimestampToSDKTimestamp,\n paths: [\n { path: 'event.createdDate' },\n { path: 'event.updatedDate' },\n { path: 'event.publishedDate' },\n { path: 'event.dateAndTimeSettings.startDate' },\n { path: 'event.dateAndTimeSettings.endDate' },\n {\n path: 'event.dateAndTimeSettings.recurringEvents.individualEventDates.startDate',\n },\n {\n path: 'event.dateAndTimeSettings.recurringEvents.individualEventDates.endDate',\n },\n { path: 'event.mainImage.urlExpirationDate' },\n { path: 'event.registration.rsvp.startDate' },\n { path: 'event.registration.rsvp.endDate' },\n { path: 'event.categories.categories.createdDate' },\n { path: 'event.description.metadata.createdTimestamp' },\n { path: 'event.description.metadata.updatedTimestamp' },\n { path: 'event.badges.badges.functionUpdateDate' },\n ],\n },\n {\n transformFn: transformRESTFloatToSDKFloat,\n paths: [\n { path: 'event.location.address.geocode.latitude' },\n { path: 'event.location.address.geocode.longitude' },\n {\n path: 'event.description.nodes.galleryData.items.image.media.duration',\n },\n {\n path: 'event.description.nodes.galleryData.items.video.media.duration',\n },\n {\n path: 'event.description.nodes.galleryData.items.video.thumbnail.duration',\n },\n {\n path: 'event.description.nodes.galleryData.options.item.ratio',\n },\n { path: 'event.description.nodes.imageData.image.duration' },\n { path: 'event.description.nodes.mapData.mapSettings.lat' },\n { path: 'event.description.nodes.mapData.mapSettings.lng' },\n { path: 'event.description.nodes.pollData.poll.image.duration' },\n {\n path: 'event.description.nodes.pollData.poll.options.image.duration',\n },\n {\n path: 'event.description.nodes.pollData.design.poll.background.image.duration',\n },\n { path: 'event.description.nodes.appEmbedData.image.duration' },\n { path: 'event.description.nodes.videoData.video.duration' },\n { path: 'event.description.nodes.videoData.thumbnail.duration' },\n { path: 'event.description.nodes.audioData.audio.duration' },\n { path: 'event.description.nodes.audioData.coverImage.duration' },\n ],\n },\n ]),\n };\n\n return metadata;\n }\n\n return __cancelEvent;\n}\n\n/**\n * Cancels multiple events that meet the specified criteria. <br> <br>\n * After cancellation, registration for an event is closed. To reuse the event, call Clone Event and Publish Event to publish it again. <br> <br>\n * If event cancellation notifications are enabled, canceling an event automatically triggers the sending of cancellation emails and/or push notifications to registered guests.\n */\nexport function bulkCancelEventsByFilter(\n payload: object\n): RequestOptionsFactory<any> {\n function __bulkCancelEventsByFilter({ host }: any) {\n const metadata = {\n entityFqdn: 'wix.events.v3.event',\n method: 'POST' as any,\n methodFqn:\n 'wix.events.events.v3.EventManagement.BulkCancelEventsByFilter',\n packageName: PACKAGE_NAME,\n migrationOptions: {\n optInTransformResponse: true,\n },\n url: resolveWixEventsEventsV3EventManagementUrl({\n protoPath: '/v3/bulk/events/cancel-by-filter',\n data: payload,\n host,\n }),\n data: payload,\n };\n\n return metadata;\n }\n\n return __bulkCancelEventsByFilter;\n}\n\n/**\n * Deletes an event. <br> <br>\n * You can retrieve the deleted event through a GDPR access request.\n */\nexport function deleteEvent(payload: object): RequestOptionsFactory<any> {\n function __deleteEvent({ host }: any) {\n const metadata = {\n entityFqdn: 'wix.events.v3.event',\n method: 'DELETE' as any,\n methodFqn: 'wix.events.events.v3.EventManagement.DeleteEvent',\n packageName: PACKAGE_NAME,\n migrationOptions: {\n optInTransformResponse: true,\n },\n url: resolveWixEventsEventsV3EventManagementUrl({\n protoPath: '/v3/events/{eventId}',\n data: payload,\n host,\n }),\n params: toURLSearchParams(payload),\n };\n\n return metadata;\n }\n\n return __deleteEvent;\n}\n\n/**\n * Deletes multiple events that meet the specified criteria. <br> <br>\n * You can retrieve the deleted events through a GDPR access request.\n */\nexport function bulkDeleteEventsByFilter(\n payload: object\n): RequestOptionsFactory<any> {\n function __bulkDeleteEventsByFilter({ host }: any) {\n const metadata = {\n entityFqdn: 'wix.events.v3.event',\n method: 'POST' as any,\n methodFqn:\n 'wix.events.events.v3.EventManagement.BulkDeleteEventsByFilter',\n packageName: PACKAGE_NAME,\n migrationOptions: {\n optInTransformResponse: true,\n },\n url: resolveWixEventsEventsV3EventManagementUrl({\n protoPath: '/v3/bulk/events/delete-by-filter',\n data: payload,\n host,\n }),\n data: payload,\n };\n\n return metadata;\n }\n\n return __bulkDeleteEventsByFilter;\n}\n\n/**\n * Creates a query to retrieve a list of events.\n *\n *\n * The `queryEvents()` method builds a query to retrieve a list of events and returns a [`EventsQueryBuilder`](https://www.wix.com/velo/reference/wix-events-v2/wixeventsv2/eventsquerybuilder) object.\n *\n * The returned object contains the query definition, which is typically used to run the query using the [`find()`](https://www.wix.com/velo/reference/wix-events-v2/wixeventsv2/eventsquerybuilder/find) method.\n *\n * You can refine the query by chaining `EventsQueryBuilder` methods onto the query. `EventsQueryBuilder` methods enable you to sort, filter, and control the results `queryEvents()` returns.\n *\n * `queryEvents()` runs with these `EventsQueryBuilder` defaults, which you can override:\n *\n * - [`skip(0)`](https://www.wix.com/velo/reference/wix-events-v2/wixeventsv2/eventsquerybuilder/skip)\n * - [`limit(50)`](https://www.wix.com/velo/reference/wix-events-v2/wixeventsv2/eventsquerybuilder/limit)\n * - [`descending(\"_createdDate\")`](https://www.wix.com/velo/reference/wix-events-v2/wixeventsv2/eventsquerybuilder/descending)\n *\n * The methods that are chained to `queryEvents()` are applied in the order they're called. For example, if you apply `ascending('title')` and then `descending('status')`, the results are sorted first by the `title`, and then, if there are multiple results with the same `title`, the items are sorted by `status`.\n */\nexport function queryEvents(payload: object): RequestOptionsFactory<any> {\n function __queryEvents({ host }: any) {\n const metadata = {\n entityFqdn: 'wix.events.v3.event',\n method: 'POST' as any,\n methodFqn: 'wix.events.events.v3.EventManagement.QueryEvents',\n packageName: PACKAGE_NAME,\n migrationOptions: {\n optInTransformResponse: true,\n },\n url: resolveWixEventsEventsV3EventManagementUrl({\n protoPath: '/v3/events/query',\n data: payload,\n host,\n }),\n data: payload,\n transformResponse: (payload: any) =>\n transformPaths(payload, [\n {\n transformFn: transformRESTTimestampToSDKTimestamp,\n paths: [\n { path: 'events.createdDate' },\n { path: 'events.updatedDate' },\n { path: 'events.publishedDate' },\n { path: 'events.dateAndTimeSettings.startDate' },\n { path: 'events.dateAndTimeSettings.endDate' },\n {\n path: 'events.dateAndTimeSettings.recurringEvents.individualEventDates.startDate',\n },\n {\n path: 'events.dateAndTimeSettings.recurringEvents.individualEventDates.endDate',\n },\n { path: 'events.mainImage.urlExpirationDate' },\n { path: 'events.registration.rsvp.startDate' },\n { path: 'events.registration.rsvp.endDate' },\n { path: 'events.categories.categories.createdDate' },\n { path: 'events.description.metadata.createdTimestamp' },\n { path: 'events.description.metadata.updatedTimestamp' },\n { path: 'events.badges.badges.functionUpdateDate' },\n ],\n },\n {\n transformFn: transformRESTFloatToSDKFloat,\n paths: [\n { path: 'events.location.address.geocode.latitude' },\n { path: 'events.location.address.geocode.longitude' },\n {\n path: 'events.description.nodes.galleryData.items.image.media.duration',\n },\n {\n path: 'events.description.nodes.galleryData.items.video.media.duration',\n },\n {\n path: 'events.description.nodes.galleryData.items.video.thumbnail.duration',\n },\n {\n path: 'events.description.nodes.galleryData.options.item.ratio',\n },\n { path: 'events.description.nodes.imageData.image.duration' },\n { path: 'events.description.nodes.mapData.mapSettings.lat' },\n { path: 'events.description.nodes.mapData.mapSettings.lng' },\n { path: 'events.description.nodes.pollData.poll.image.duration' },\n {\n path: 'events.description.nodes.pollData.poll.options.image.duration',\n },\n {\n path: 'events.description.nodes.pollData.design.poll.background.image.duration',\n },\n { path: 'events.description.nodes.appEmbedData.image.duration' },\n { path: 'events.description.nodes.videoData.video.duration' },\n { path: 'events.description.nodes.videoData.thumbnail.duration' },\n { path: 'events.description.nodes.audioData.audio.duration' },\n {\n path: 'events.description.nodes.audioData.coverImage.duration',\n },\n ],\n },\n ]),\n };\n\n return metadata;\n }\n\n return __queryEvents;\n}\n\n/** Counts events by status. */\nexport function countEventsByStatus(\n payload: object\n): RequestOptionsFactory<any> {\n function __countEventsByStatus({ host }: any) {\n const metadata = {\n entityFqdn: 'wix.events.v3.event',\n method: 'POST' as any,\n methodFqn: 'wix.events.events.v3.EventManagement.CountEventsByStatus',\n packageName: PACKAGE_NAME,\n migrationOptions: {\n optInTransformResponse: true,\n },\n url: resolveWixEventsEventsV3EventManagementUrl({\n protoPath: '/v3/events/count-by-status',\n data: payload,\n host,\n }),\n data: payload,\n };\n\n return metadata;\n }\n\n return __countEventsByStatus;\n}\n\n/** Retrieves an event by ID. */\nexport function getEvent(payload: object): RequestOptionsFactory<any> {\n function __getEvent({ host }: any) {\n const metadata = {\n entityFqdn: 'wix.events.v3.event',\n method: 'GET' as any,\n methodFqn: 'wix.events.events.v3.EventManagement.GetEvent',\n packageName: PACKAGE_NAME,\n migrationOptions: {\n optInTransformResponse: true,\n },\n url: resolveWixEventsEventsV3EventManagementUrl({\n protoPath: '/v3/events/{eventId}',\n data: payload,\n host,\n }),\n params: toURLSearchParams(payload),\n transformResponse: (payload: any) =>\n transformPaths(payload, [\n {\n transformFn: transformRESTTimestampToSDKTimestamp,\n paths: [\n { path: 'event.createdDate' },\n { path: 'event.updatedDate' },\n { path: 'event.publishedDate' },\n { path: 'event.dateAndTimeSettings.startDate' },\n { path: 'event.dateAndTimeSettings.endDate' },\n {\n path: 'event.dateAndTimeSettings.recurringEvents.individualEventDates.startDate',\n },\n {\n path: 'event.dateAndTimeSettings.recurringEvents.individualEventDates.endDate',\n },\n { path: 'event.mainImage.urlExpirationDate' },\n { path: 'event.registration.rsvp.startDate' },\n { path: 'event.registration.rsvp.endDate' },\n { path: 'event.categories.categories.createdDate' },\n { path: 'event.description.metadata.createdTimestamp' },\n { path: 'event.description.metadata.updatedTimestamp' },\n { path: 'event.badges.badges.functionUpdateDate' },\n ],\n },\n {\n transformFn: transformRESTFloatToSDKFloat,\n paths: [\n { path: 'event.location.address.geocode.latitude' },\n { path: 'event.location.address.geocode.longitude' },\n {\n path: 'event.description.nodes.galleryData.items.image.media.duration',\n },\n {\n path: 'event.description.nodes.galleryData.items.video.media.duration',\n },\n {\n path: 'event.description.nodes.galleryData.items.video.thumbnail.duration',\n },\n {\n path: 'event.description.nodes.galleryData.options.item.ratio',\n },\n { path: 'event.description.nodes.imageData.image.duration' },\n { path: 'event.description.nodes.mapData.mapSettings.lat' },\n { path: 'event.description.nodes.mapData.mapSettings.lng' },\n { path: 'event.description.nodes.pollData.poll.image.duration' },\n {\n path: 'event.description.nodes.pollData.poll.options.image.duration',\n },\n {\n path: 'event.description.nodes.pollData.design.poll.background.image.duration',\n },\n { path: 'event.description.nodes.appEmbedData.image.duration' },\n { path: 'event.description.nodes.videoData.video.duration' },\n { path: 'event.description.nodes.videoData.thumbnail.duration' },\n { path: 'event.description.nodes.audioData.audio.duration' },\n { path: 'event.description.nodes.audioData.coverImage.duration' },\n ],\n },\n ]),\n };\n\n return metadata;\n }\n\n return __getEvent;\n}\n\n/**\n * Retrieves an event by the slug URL.\n *\n * The slug is the end of an event URL that refers to a specific event. For example, if an event's URL is `https://example.com/events/event/{my-event-slug}`, the slug is `my-event-slug`.\n */\nexport function getEventBySlug(payload: object): RequestOptionsFactory<any> {\n function __getEventBySlug({ host }: any) {\n const metadata = {\n entityFqdn: 'wix.events.v3.event',\n method: 'GET' as any,\n methodFqn: 'wix.events.events.v3.EventManagement.GetEventBySlug',\n packageName: PACKAGE_NAME,\n migrationOptions: {\n optInTransformResponse: true,\n },\n url: resolveWixEventsEventsV3EventManagementUrl({\n protoPath: '/v3/events/slug/{slug}',\n data: payload,\n host,\n }),\n params: toURLSearchParams(payload),\n transformResponse: (payload: any) =>\n transformPaths(payload, [\n {\n transformFn: transformRESTTimestampToSDKTimestamp,\n paths: [\n { path: 'event.createdDate' },\n { path: 'event.updatedDate' },\n { path: 'event.publishedDate' },\n { path: 'event.dateAndTimeSettings.startDate' },\n { path: 'event.dateAndTimeSettings.endDate' },\n {\n path: 'event.dateAndTimeSettings.recurringEvents.individualEventDates.startDate',\n },\n {\n path: 'event.dateAndTimeSettings.recurringEvents.individualEventDates.endDate',\n },\n { path: 'event.mainImage.urlExpirationDate' },\n { path: 'event.registration.rsvp.startDate' },\n { path: 'event.registration.rsvp.endDate' },\n { path: 'event.categories.categories.createdDate' },\n { path: 'event.description.metadata.createdTimestamp' },\n { path: 'event.description.metadata.updatedTimestamp' },\n { path: 'event.badges.badges.functionUpdateDate' },\n ],\n },\n {\n transformFn: transformRESTFloatToSDKFloat,\n paths: [\n { path: 'event.location.address.geocode.latitude' },\n { path: 'event.location.address.geocode.longitude' },\n {\n path: 'event.description.nodes.galleryData.items.image.media.duration',\n },\n {\n path: 'event.description.nodes.galleryData.items.video.media.duration',\n },\n {\n path: 'event.description.nodes.galleryData.items.video.thumbnail.duration',\n },\n {\n path: 'event.description.nodes.galleryData.options.item.ratio',\n },\n { path: 'event.description.nodes.imageData.image.duration' },\n { path: 'event.description.nodes.mapData.mapSettings.lat' },\n { path: 'event.description.nodes.mapData.mapSettings.lng' },\n { path: 'event.description.nodes.pollData.poll.image.duration' },\n {\n path: 'event.description.nodes.pollData.poll.options.image.duration',\n },\n {\n path: 'event.description.nodes.pollData.design.poll.background.image.duration',\n },\n { path: 'event.description.nodes.appEmbedData.image.duration' },\n { path: 'event.description.nodes.videoData.video.duration' },\n { path: 'event.description.nodes.videoData.thumbnail.duration' },\n { path: 'event.description.nodes.audioData.audio.duration' },\n { path: 'event.description.nodes.audioData.coverImage.duration' },\n ],\n },\n ]),\n };\n\n return metadata;\n }\n\n return __getEventBySlug;\n}\n","import * as ambassadorWixEventsV3Event from './events-v3-event-wix-events-v-2.http.js';\nimport * as ambassadorWixEventsV3EventTypes from './events-v3-event-wix-events-v-2.types.js';\nimport * as ambassadorWixEventsV3EventUniversalTypes from './events-v3-event-wix-events-v-2.universal.js';\n\nexport type __PublicMethodMetaInfo<\n K = string,\n M = unknown,\n T = unknown,\n S = unknown,\n Q = unknown,\n R = unknown\n> = {\n getUrl: (context: any) => string;\n httpMethod: K;\n path: string;\n pathParams: M;\n __requestType: T;\n __originalRequestType: S;\n __responseType: Q;\n __originalResponseType: R;\n};\n\nexport function createEvent(): __PublicMethodMetaInfo<\n 'POST',\n {},\n ambassadorWixEventsV3EventUniversalTypes.CreateEventRequest,\n ambassadorWixEventsV3EventTypes.CreateEventRequest,\n ambassadorWixEventsV3EventUniversalTypes.CreateEventResponse,\n ambassadorWixEventsV3EventTypes.CreateEventResponse\n> {\n const payload = {} as any;\n\n const getRequestOptions = ambassadorWixEventsV3Event.createEvent(payload);\n\n const getUrl = (context: any): string => {\n const { url } = getRequestOptions(context);\n return url!;\n };\n\n return {\n getUrl,\n httpMethod: 'POST',\n path: '/v3/events',\n pathParams: {},\n __requestType: null as any,\n __originalRequestType: null as any,\n __responseType: null as any,\n __originalResponseType: null as any,\n };\n}\n\nexport function cloneEvent(): __PublicMethodMetaInfo<\n 'POST',\n { eventId: string },\n ambassadorWixEventsV3EventUniversalTypes.CloneEventRequest,\n ambassadorWixEventsV3EventTypes.CloneEventRequest,\n ambassadorWixEventsV3EventUniversalTypes.CloneEventResponse,\n ambassadorWixEventsV3EventTypes.CloneEventResponse\n> {\n const payload = { eventId: ':eventId' } as any;\n\n const getRequestOptions = ambassadorWixEventsV3Event.cloneEvent(payload);\n\n const getUrl = (context: any): string => {\n const { url } = getRequestOptions(context);\n return url!;\n };\n\n return {\n getUrl,\n httpMethod: 'POST',\n path: '/v3/events/{eventId}/clone',\n pathParams: { eventId: 'eventId' },\n __requestType: null as any,\n __originalRequestType: null as any,\n __responseType: null as any,\n __originalResponseType: null as any,\n };\n}\n\nexport function updateEvent(): __PublicMethodMetaInfo<\n 'PATCH',\n { eventId: string },\n ambassadorWixEventsV3EventUniversalTypes.UpdateEventRequest,\n ambassadorWixEventsV3EventTypes.UpdateEventRequest,\n ambassadorWixEventsV3EventUniversalTypes.UpdateEventResponse,\n ambassadorWixEventsV3EventTypes.UpdateEventResponse\n> {\n const payload = { event: { id: ':eventId' } } as any;\n\n const getRequestOptions = ambassadorWixEventsV3Event.updateEvent(payload);\n\n const getUrl = (context: any): string => {\n const { url } = getRequestOptions(context);\n return url!;\n };\n\n return {\n getUrl,\n httpMethod: 'PATCH',\n path: '/v3/events/{event.id}',\n pathParams: { eventId: 'eventId' },\n __requestType: null as any,\n __originalRequestType: null as any,\n __responseType: null as any,\n __originalResponseType: null as any,\n };\n}\n\nexport function publishDraftEvent(): __PublicMethodMetaInfo<\n 'POST',\n { eventId: string },\n ambassadorWixEventsV3EventUniversalTypes.PublishDraftEventRequest,\n ambassadorWixEventsV3EventTypes.PublishDraftEventRequest,\n ambassadorWixEventsV3EventUniversalTypes.PublishDraftEventResponse,\n ambassadorWixEventsV3EventTypes.PublishDraftEventResponse\n> {\n const payload = { eventId: ':eventId' } as any;\n\n const getRequestOptions =\n ambassadorWixEventsV3Event.publishDraftEvent(payload);\n\n const getUrl = (context: any): string => {\n const { url } = getRequestOptions(context);\n return url!;\n };\n\n return {\n getUrl,\n httpMethod: 'POST',\n path: '/v3/events/{eventId}/publish',\n pathParams: { eventId: 'eventId' },\n __requestType: null as any,\n __originalRequestType: null as any,\n __responseType: null as any,\n __originalResponseType: null as any,\n };\n}\n\nexport function cancelEvent(): __PublicMethodMetaInfo<\n 'POST',\n { eventId: string },\n ambassadorWixEventsV3EventUniversalTypes.CancelEventRequest,\n ambassadorWixEventsV3EventTypes.CancelEventRequest,\n ambassadorWixEventsV3EventUniversalTypes.CancelEventResponse,\n ambassadorWixEventsV3EventTypes.CancelEventResponse\n> {\n const payload = { eventId: ':eventId' } as any;\n\n const getRequestOptions = ambassadorWixEventsV3Event.cancelEvent(payload);\n\n const getUrl = (context: any): string => {\n const { url } = getRequestOptions(context);\n return url!;\n };\n\n return {\n getUrl,\n httpMethod: 'POST',\n path: '/v3/events/{eventId}/cancel',\n pathParams: { eventId: 'eventId' },\n __requestType: null as any,\n __originalRequestType: null as any,\n __responseType: null as any,\n __originalResponseType: null as any,\n };\n}\n\nexport function bulkCancelEventsByFilter(): __PublicMethodMetaInfo<\n 'POST',\n {},\n ambassadorWixEventsV3EventUniversalTypes.BulkCancelEventsByFilterRequest,\n ambassadorWixEventsV3EventTypes.BulkCancelEventsByFilterRequest,\n ambassadorWixEventsV3EventUniversalTypes.BulkCancelEventsByFilterResponse,\n ambassadorWixEventsV3EventTypes.BulkCancelEventsByFilterResponse\n> {\n const payload = {} as any;\n\n const getRequestOptions =\n ambassadorWixEventsV3Event.bulkCancelEventsByFilter(payload);\n\n const getUrl = (context: any): string => {\n const { url } = getRequestOptions(context);\n return url!;\n };\n\n return {\n getUrl,\n httpMethod: 'POST',\n path: '/v3/bulk/events/cancel-by-filter',\n pathParams: {},\n __requestType: null as any,\n __originalRequestType: null as any,\n __responseType: null as any,\n __originalResponseType: null as any,\n };\n}\n\nexport function deleteEvent(): __PublicMethodMetaInfo<\n 'DELETE',\n { eventId: string },\n ambassadorWixEventsV3EventUniversalTypes.DeleteEventRequest,\n ambassadorWixEventsV3EventTypes.DeleteEventRequest,\n ambassadorWixEventsV3EventUniversalTypes.DeleteEventResponse,\n ambassadorWixEventsV3EventTypes.DeleteEventResponse\n> {\n const payload = { eventId: ':eventId' } as any;\n\n const getRequestOptions = ambassadorWixEventsV3Event.deleteEvent(payload);\n\n const getUrl = (context: any): string => {\n const { url } = getRequestOptions(context);\n return url!;\n };\n\n return {\n getUrl,\n httpMethod: 'DELETE',\n path: '/v3/events/{eventId}',\n pathParams: { eventId: 'eventId' },\n __requestType: null as any,\n __originalRequestType: null as any,\n __responseType: null as any,\n __originalResponseType: null as any,\n };\n}\n\nexport function bulkDeleteEventsByFilter(): __PublicMethodMetaInfo<\n 'POST',\n {},\n ambassadorWixEventsV3EventUniversalTypes.BulkDeleteEventsByFilterRequest,\n ambassadorWixEventsV3EventTypes.BulkDeleteEventsByFilterRequest,\n ambassadorWixEventsV3EventUniversalTypes.BulkDeleteEventsByFilterResponse,\n ambassadorWixEventsV3EventTypes.BulkDeleteEventsByFilterResponse\n> {\n const payload = {} as any;\n\n const getRequestOptions =\n ambassadorWixEventsV3Event.bulkDeleteEventsByFilter(payload);\n\n const getUrl = (context: any): string => {\n const { url } = getRequestOptions(context);\n return url!;\n };\n\n return {\n getUrl,\n httpMethod: 'POST',\n path: '/v3/bulk/events/delete-by-filter',\n pathParams: {},\n __requestType: null as any,\n __originalRequestType: null as any,\n __responseType: null as any,\n __originalResponseType: null as any,\n };\n}\n\nexport function queryEvents(): __PublicMethodMetaInfo<\n 'POST',\n {},\n ambassadorWixEventsV3EventUniversalTypes.QueryEventsRequest,\n ambassadorWixEventsV3EventTypes.QueryEventsRequest,\n ambassadorWixEventsV3EventUniversalTypes.QueryEventsResponse,\n ambassadorWixEventsV3EventTypes.QueryEventsResponse\n> {\n const payload = {} as any;\n\n const getRequestOptions = ambassadorWixEventsV3Event.queryEvents(payload);\n\n const getUrl = (context: any): string => {\n const { url } = getRequestOptions(context);\n return url!;\n };\n\n return {\n getUrl,\n httpMethod: 'POST',\n path: '/v3/events/query',\n pathParams: {},\n __requestType: null as any,\n __originalRequestType: null as any,\n __responseType: null as any,\n __originalResponseType: null as any,\n };\n}\n\nexport function countEventsByStatus(): __PublicMethodMetaInfo<\n 'POST',\n {},\n ambassadorWixEventsV3EventUniversalTypes.CountEventsByStatusRequest,\n ambassadorWixEventsV3EventTypes.CountEventsByStatusRequest,\n ambassadorWixEventsV3EventUniversalTypes.CountEventsByStatusResponse,\n ambassadorWixEventsV3EventTypes.CountEventsByStatusResponse\n> {\n const payload = {} as any;\n\n const getRequestOptions =\n ambassadorWixEventsV3Event.countEventsByStatus(payload);\n\n const getUrl = (context: any): string => {\n const { url } = getRequestOptions(context);\n return url!;\n };\n\n return {\n getUrl,\n httpMethod: 'POST',\n path: '/v3/events/count-by-status',\n pathParams: {},\n __requestType: null as any,\n __originalRequestType: null as any,\n __responseType: null as any,\n __originalResponseType: null as any,\n };\n}\n\nexport function getEvent(): __PublicMethodMetaInfo<\n 'GET',\n { eventId: string },\n ambassadorWixEventsV3EventUniversalTypes.GetEventRequest,\n ambassadorWixEventsV3EventTypes.GetEventRequest,\n ambassadorWixEventsV3EventUniversalTypes.GetEventResponse,\n ambassadorWixEventsV3EventTypes.GetEventResponse\n> {\n const payload = { eventId: ':eventId' } as any;\n\n const getRequestOptions = ambassadorWixEventsV3Event.getEvent(payload);\n\n const getUrl = (context: any): string => {\n const { url } = getRequestOptions(context);\n return url!;\n };\n\n return {\n getUrl,\n httpMethod: 'GET',\n path: '/v3/events/{eventId}',\n pathParams: { eventId: 'eventId' },\n __requestType: null as any,\n __originalRequestType: null as any,\n __responseType: null as any,\n __originalResponseType: null as any,\n };\n}\n\nexport function getEventBySlug(): __PublicMethodMetaInfo<\n 'GET',\n { slug: string },\n ambassadorWixEventsV3EventUniversalTypes.GetEventBySlugRequest,\n ambassadorWixEventsV3EventTypes.GetEventBySlugRequest,\n ambassadorWixEventsV3EventUniversalTypes.GetEventBySlugResponse,\n ambassadorWixEventsV3EventTypes.GetEventBySlugResponse\n> {\n const payload = { slug: ':slug' } as any;\n\n const getRequestOptions = ambassadorWixEventsV3Event.getEventBySlug(payload);\n\n const getUrl = (context: any): string => {\n const { url } = getRequestOptions(context);\n return url!;\n };\n\n return {\n getUrl,\n httpMethod: 'GET',\n path: '/v3/events/slug/{slug}',\n pathParams: { slug: 'slug' },\n __requestType: null as any,\n __originalRequestType: null as any,\n __responseType: null as any,\n __originalResponseType: null as any,\n };\n}\n"],"mappings":"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","names":["bulkCancelEventsByFilter","bulkDeleteEventsByFilter","cancelEvent","cloneEvent","countEventsByStatus","createEvent","deleteEvent","getEvent","getEventBySlug","publishDraftEvent","queryEvents","updateEvent","import_float","import_timestamp","import_rest_modules","payload","createEvent","cloneEvent","updateEvent","publishDraftEvent","cancelEvent","bulkCancelEventsByFilter","deleteEvent","bulkDeleteEventsByFilter","queryEvents","countEventsByStatus","getEvent","getEventBySlug"]}