@wix/auto_sdk_events_wix-events-v-2 1.0.48 → 1.0.50
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/build/cjs/index.js.map +1 -1
- package/build/cjs/index.typings.d.ts +31 -9
- package/build/cjs/index.typings.js.map +1 -1
- package/build/cjs/meta.d.ts +5 -5
- package/build/es/index.mjs.map +1 -1
- package/build/es/index.typings.d.mts +31 -9
- package/build/es/index.typings.mjs.map +1 -1
- package/build/es/meta.d.mts +5 -5
- package/build/internal/cjs/index.js.map +1 -1
- package/build/internal/cjs/index.typings.d.ts +31 -9
- package/build/internal/cjs/index.typings.js.map +1 -1
- package/build/internal/cjs/meta.d.ts +5 -5
- package/build/internal/es/index.mjs.map +1 -1
- package/build/internal/es/index.typings.d.mts +31 -9
- package/build/internal/es/index.typings.mjs.map +1 -1
- package/build/internal/es/meta.d.mts +5 -5
- package/package.json +2 -2
|
@@ -1123,21 +1123,21 @@ interface Tag {
|
|
|
1123
1123
|
* For example: `{"name": "description", "content": "the description itself"}`.
|
|
1124
1124
|
*/
|
|
1125
1125
|
props?: Record<string, any> | null;
|
|
1126
|
-
/** SEO tag
|
|
1126
|
+
/** SEO tag metadata. For example, `{"height": 300, "width": 240}`. */
|
|
1127
1127
|
meta?: Record<string, any> | null;
|
|
1128
1128
|
/** SEO tag inner content. For example, `<title> inner content </title>`. */
|
|
1129
1129
|
children?: string;
|
|
1130
|
-
/** Whether the tag is a custom tag. */
|
|
1130
|
+
/** Whether the tag is a [custom tag](https://support.wix.com/en/article/adding-additional-meta-tags-to-your-sites-pages). */
|
|
1131
1131
|
custom?: boolean;
|
|
1132
|
-
/** Whether the tag is disabled. */
|
|
1132
|
+
/** Whether the tag is disabled. If the tag is disabled, people can't find your page when searching for this phrase in search engines. */
|
|
1133
1133
|
disabled?: boolean;
|
|
1134
1134
|
}
|
|
1135
1135
|
interface Settings {
|
|
1136
1136
|
/**
|
|
1137
|
-
* Whether the
|
|
1137
|
+
* Whether the [automatical redirect visits](https://support.wix.com/en/article/customizing-your-pages-seo-settings-in-the-seo-panel) from the old URL to the new one is enabled.
|
|
1138
1138
|
*
|
|
1139
1139
|
*
|
|
1140
|
-
* Default: `false` (
|
|
1140
|
+
* Default: `false` (automatical redirect is enabled).
|
|
1141
1141
|
*/
|
|
1142
1142
|
preventAutoRedirect?: boolean;
|
|
1143
1143
|
/**
|
|
@@ -4727,6 +4727,7 @@ declare enum WebhookIdentityType {
|
|
|
4727
4727
|
}
|
|
4728
4728
|
/** @enumType */
|
|
4729
4729
|
type WebhookIdentityTypeWithLiterals = WebhookIdentityType | 'UNKNOWN' | 'ANONYMOUS_VISITOR' | 'MEMBER' | 'WIX_USER' | 'APP';
|
|
4730
|
+
/** @docsIgnore */
|
|
4730
4731
|
type CreateEventApplicationErrors = {
|
|
4731
4732
|
code?: 'INVALID_SLUG_FORMAT';
|
|
4732
4733
|
description?: string;
|
|
@@ -4740,9 +4741,11 @@ type CreateEventApplicationErrors = {
|
|
|
4740
4741
|
description?: string;
|
|
4741
4742
|
data?: Record<string, any>;
|
|
4742
4743
|
};
|
|
4744
|
+
/** @docsIgnore */
|
|
4743
4745
|
type CreateEventValidationErrors = {
|
|
4744
4746
|
ruleName?: 'INVALID_EVENT_CONFIGURATION';
|
|
4745
4747
|
};
|
|
4748
|
+
/** @docsIgnore */
|
|
4746
4749
|
type UpdateEventApplicationErrors = {
|
|
4747
4750
|
code?: 'INVALID_EVENT_STATUS_TRANSITION';
|
|
4748
4751
|
description?: string;
|
|
@@ -4756,9 +4759,11 @@ type UpdateEventApplicationErrors = {
|
|
|
4756
4759
|
description?: string;
|
|
4757
4760
|
data?: Record<string, any>;
|
|
4758
4761
|
};
|
|
4762
|
+
/** @docsIgnore */
|
|
4759
4763
|
type UpdateEventValidationErrors = {
|
|
4760
4764
|
ruleName?: 'INVALID_EVENT_CONFIGURATION';
|
|
4761
4765
|
};
|
|
4766
|
+
/** @docsIgnore */
|
|
4762
4767
|
type PublishDraftEventApplicationErrors = {
|
|
4763
4768
|
code?: 'INVALID_EVENT_STATUS_TRANSITION';
|
|
4764
4769
|
description?: string;
|
|
@@ -4768,16 +4773,19 @@ type PublishDraftEventApplicationErrors = {
|
|
|
4768
4773
|
description?: string;
|
|
4769
4774
|
data?: Record<string, any>;
|
|
4770
4775
|
};
|
|
4776
|
+
/** @docsIgnore */
|
|
4771
4777
|
type CancelEventApplicationErrors = {
|
|
4772
4778
|
code?: 'INVALID_EVENT_STATUS_TRANSITION';
|
|
4773
4779
|
description?: string;
|
|
4774
4780
|
data?: Record<string, any>;
|
|
4775
4781
|
};
|
|
4782
|
+
/** @docsIgnore */
|
|
4776
4783
|
type QueryEventsApplicationErrors = {
|
|
4777
4784
|
code?: 'FILTER_PARSER_ERROR';
|
|
4778
4785
|
description?: string;
|
|
4779
4786
|
data?: Record<string, any>;
|
|
4780
4787
|
};
|
|
4788
|
+
/** @docsIgnore */
|
|
4781
4789
|
type CountEventsByStatusApplicationErrors = {
|
|
4782
4790
|
code?: 'FILTER_PARSER_ERROR';
|
|
4783
4791
|
description?: string;
|
|
@@ -4849,6 +4857,8 @@ interface EventCanceledEnvelope {
|
|
|
4849
4857
|
* @permissionScopeId SCOPE.CHALLENGES.MANAGE
|
|
4850
4858
|
* @permissionScope Manage Portfolio
|
|
4851
4859
|
* @permissionScopeId SCOPE.PORTFOLIO.MANAGE-PORTFOLIO
|
|
4860
|
+
* @permissionScope View SEO Settings
|
|
4861
|
+
* @permissionScopeId SCOPE.PROMOTE.VIEW-SEO
|
|
4852
4862
|
* @permissionScope Manage Blog
|
|
4853
4863
|
* @permissionScopeId SCOPE.BLOG.MANAGE-BLOG
|
|
4854
4864
|
* @permissionScope Access Verticals by Automations
|
|
@@ -4889,6 +4899,8 @@ interface EventClonedEnvelope {
|
|
|
4889
4899
|
* @permissionScopeId SCOPE.CHALLENGES.MANAGE
|
|
4890
4900
|
* @permissionScope Manage Portfolio
|
|
4891
4901
|
* @permissionScopeId SCOPE.PORTFOLIO.MANAGE-PORTFOLIO
|
|
4902
|
+
* @permissionScope View SEO Settings
|
|
4903
|
+
* @permissionScopeId SCOPE.PROMOTE.VIEW-SEO
|
|
4892
4904
|
* @permissionScope Manage Blog
|
|
4893
4905
|
* @permissionScopeId SCOPE.BLOG.MANAGE-BLOG
|
|
4894
4906
|
* @permissionScope Access Verticals by Automations
|
|
@@ -4929,6 +4941,8 @@ interface EventCreatedEnvelope {
|
|
|
4929
4941
|
* @permissionScopeId SCOPE.CHALLENGES.MANAGE
|
|
4930
4942
|
* @permissionScope Manage Portfolio
|
|
4931
4943
|
* @permissionScopeId SCOPE.PORTFOLIO.MANAGE-PORTFOLIO
|
|
4944
|
+
* @permissionScope View SEO Settings
|
|
4945
|
+
* @permissionScopeId SCOPE.PROMOTE.VIEW-SEO
|
|
4932
4946
|
* @permissionScope Manage Blog
|
|
4933
4947
|
* @permissionScopeId SCOPE.BLOG.MANAGE-BLOG
|
|
4934
4948
|
* @permissionScope Access Verticals by Automations
|
|
@@ -4968,6 +4982,8 @@ interface EventDeletedEnvelope {
|
|
|
4968
4982
|
* @permissionScopeId SCOPE.CHALLENGES.MANAGE
|
|
4969
4983
|
* @permissionScope Manage Portfolio
|
|
4970
4984
|
* @permissionScopeId SCOPE.PORTFOLIO.MANAGE-PORTFOLIO
|
|
4985
|
+
* @permissionScope View SEO Settings
|
|
4986
|
+
* @permissionScopeId SCOPE.PROMOTE.VIEW-SEO
|
|
4971
4987
|
* @permissionScope Manage Blog
|
|
4972
4988
|
* @permissionScopeId SCOPE.BLOG.MANAGE-BLOG
|
|
4973
4989
|
* @permissionScope Access Verticals by Automations
|
|
@@ -5008,6 +5024,8 @@ interface EventEndedEnvelope {
|
|
|
5008
5024
|
* @permissionScopeId SCOPE.CHALLENGES.MANAGE
|
|
5009
5025
|
* @permissionScope Manage Portfolio
|
|
5010
5026
|
* @permissionScopeId SCOPE.PORTFOLIO.MANAGE-PORTFOLIO
|
|
5027
|
+
* @permissionScope View SEO Settings
|
|
5028
|
+
* @permissionScopeId SCOPE.PROMOTE.VIEW-SEO
|
|
5011
5029
|
* @permissionScope Manage Blog
|
|
5012
5030
|
* @permissionScopeId SCOPE.BLOG.MANAGE-BLOG
|
|
5013
5031
|
* @permissionScope Access Verticals by Automations
|
|
@@ -5048,6 +5066,8 @@ interface EventPublishedEnvelope {
|
|
|
5048
5066
|
* @permissionScopeId SCOPE.CHALLENGES.MANAGE
|
|
5049
5067
|
* @permissionScope Manage Portfolio
|
|
5050
5068
|
* @permissionScopeId SCOPE.PORTFOLIO.MANAGE-PORTFOLIO
|
|
5069
|
+
* @permissionScope View SEO Settings
|
|
5070
|
+
* @permissionScopeId SCOPE.PROMOTE.VIEW-SEO
|
|
5051
5071
|
* @permissionScope Manage Blog
|
|
5052
5072
|
* @permissionScopeId SCOPE.BLOG.MANAGE-BLOG
|
|
5053
5073
|
* @permissionScope Access Verticals by Automations
|
|
@@ -5094,6 +5114,8 @@ interface EventReminderEnvelope {
|
|
|
5094
5114
|
* @permissionScopeId SCOPE.CHALLENGES.MANAGE
|
|
5095
5115
|
* @permissionScope Manage Portfolio
|
|
5096
5116
|
* @permissionScopeId SCOPE.PORTFOLIO.MANAGE-PORTFOLIO
|
|
5117
|
+
* @permissionScope View SEO Settings
|
|
5118
|
+
* @permissionScopeId SCOPE.PROMOTE.VIEW-SEO
|
|
5097
5119
|
* @permissionScope Manage Blog
|
|
5098
5120
|
* @permissionScopeId SCOPE.BLOG.MANAGE-BLOG
|
|
5099
5121
|
* @permissionScope Access Verticals by Automations
|
|
@@ -5134,6 +5156,8 @@ interface EventStartedEnvelope {
|
|
|
5134
5156
|
* @permissionScopeId SCOPE.CHALLENGES.MANAGE
|
|
5135
5157
|
* @permissionScope Manage Portfolio
|
|
5136
5158
|
* @permissionScopeId SCOPE.PORTFOLIO.MANAGE-PORTFOLIO
|
|
5159
|
+
* @permissionScope View SEO Settings
|
|
5160
|
+
* @permissionScopeId SCOPE.PROMOTE.VIEW-SEO
|
|
5137
5161
|
* @permissionScope Manage Blog
|
|
5138
5162
|
* @permissionScopeId SCOPE.BLOG.MANAGE-BLOG
|
|
5139
5163
|
* @permissionScope Access Verticals by Automations
|
|
@@ -5174,6 +5198,8 @@ interface EventUpdatedEnvelope {
|
|
|
5174
5198
|
* @permissionScopeId SCOPE.CHALLENGES.MANAGE
|
|
5175
5199
|
* @permissionScope Manage Portfolio
|
|
5176
5200
|
* @permissionScopeId SCOPE.PORTFOLIO.MANAGE-PORTFOLIO
|
|
5201
|
+
* @permissionScope View SEO Settings
|
|
5202
|
+
* @permissionScopeId SCOPE.PROMOTE.VIEW-SEO
|
|
5177
5203
|
* @permissionScope Manage Blog
|
|
5178
5204
|
* @permissionScopeId SCOPE.BLOG.MANAGE-BLOG
|
|
5179
5205
|
* @permissionScope Access Verticals by Automations
|
|
@@ -5505,7 +5531,6 @@ interface BulkDeleteEventsByFilterOptions {
|
|
|
5505
5531
|
* @param options - Optional fields.
|
|
5506
5532
|
* @permissionId WIX_EVENTS.READ_EVENTS
|
|
5507
5533
|
* @applicableIdentity APP
|
|
5508
|
-
* @applicableIdentity VISITOR
|
|
5509
5534
|
* @fqn wix.events.events.v3.EventManagement.QueryEvents
|
|
5510
5535
|
*/
|
|
5511
5536
|
declare function queryEvents(options?: QueryEventsOptions): EventsQueryBuilder;
|
|
@@ -5578,7 +5603,6 @@ interface EventsQueryBuilder {
|
|
|
5578
5603
|
* @param options - Optional fields.
|
|
5579
5604
|
* @permissionId WIX_EVENTS.READ_EVENTS
|
|
5580
5605
|
* @applicableIdentity APP
|
|
5581
|
-
* @applicableIdentity VISITOR
|
|
5582
5606
|
* @fqn wix.events.events.v3.EventManagement.CountEventsByStatus
|
|
5583
5607
|
*/
|
|
5584
5608
|
declare function countEventsByStatus(options?: CountEventsByStatusOptions): Promise<CountEventsByStatusResponse & {
|
|
@@ -5607,7 +5631,6 @@ interface CountEventsByStatusOptions {
|
|
|
5607
5631
|
* @param options - Optional fields.
|
|
5608
5632
|
* @permissionId WIX_EVENTS.READ_EVENTS
|
|
5609
5633
|
* @applicableIdentity APP
|
|
5610
|
-
* @applicableIdentity VISITOR
|
|
5611
5634
|
* @returns Event.
|
|
5612
5635
|
* @fqn wix.events.events.v3.EventManagement.GetEvent
|
|
5613
5636
|
*/
|
|
@@ -5629,7 +5652,6 @@ interface GetEventOptions {
|
|
|
5629
5652
|
* @param options - Optional fields.
|
|
5630
5653
|
* @permissionId WIX_EVENTS.READ_EVENTS
|
|
5631
5654
|
* @applicableIdentity APP
|
|
5632
|
-
* @applicableIdentity VISITOR
|
|
5633
5655
|
* @fqn wix.events.events.v3.EventManagement.GetEventBySlug
|
|
5634
5656
|
*/
|
|
5635
5657
|
declare function getEventBySlug(slug: string, options?: GetEventBySlugOptions): Promise<NonNullablePaths<GetEventBySlugResponse, `event._id` | `event.location.type` | `event.location.address.streetAddress.number` | `event.location.address.streetAddress.name` | `event.dateAndTimeSettings.recurrenceStatus` | `event.dateAndTimeSettings.recurringEvents.individualEventDates` | `event.dateAndTimeSettings.recurringEvents.individualEventDates.${number}.showTimeZone` | `event.slug` | `event.status` | `event.registration.type` | `event.registration.status` | `event.registration.rsvp.responseType` | `event.registration.rsvp.waitlistEnabled` | `event.registration.tickets.guestsAssignedSeparately` | `event.registration.tickets.ticketLimitPerOrder` | `event.registration.tickets.lowestPrice.value` | `event.registration.tickets.lowestPrice.currency` | `event.registration.tickets.taxSettings.type` | `event.registration.allowedGuestTypes` | `event.registration.initialType` | `event.registration.registrationPaused` | `event.registration.registrationDisabled` | `event.calendarUrls.google` | `event.calendarUrls.ics` | `event.form.controls` | `event.form.controls.${number}.type` | `event.form.controls.${number}.system` | `event.form.controls.${number}.name` | `event.form.controls.${number}.label` | `event.form.controls.${number}.orderIndex` | `event.form.controls.${number}._id` | `event.form.messages.rsvp.rsvpYesOption` | `event.form.messages.rsvp.rsvpNoOption` | `event.form.messages.rsvp.positiveMessages.title` | `event.form.messages.rsvp.positiveMessages.confirmation.title` | `event.form.messages.rsvp.positiveMessages.confirmation.message` | `event.form.messages.rsvp.positiveMessages.confirmation.addToCalendarActionLabel` | `event.form.messages.rsvp.positiveMessages.confirmation.shareActionLabel` | `event.form.messages.rsvp.negativeMessages.title` | `event.form.messages.rsvp.negativeMessages.confirmation.title` | `event.form.messages.rsvp.negativeMessages.confirmation.shareActionLabel` | `event.form.messages.rsvp.submitActionLabel` | `event.form.messages.checkout.title` | `event.form.messages.checkout.submitActionLabel` | `event.form.messages.checkout.confirmation.title` | `event.form.messages.checkout.confirmation.message` | `event.form.messages.checkout.confirmation.downloadTicketsLabel` | `event.form.messages.checkout.confirmation.addToCalendarLabel` | `event.form.messages.checkout.confirmation.shareEventLabel` | `event.form.messages.registrationClosed.message` | `event.form.messages.registrationClosed.exploreEventsActionLabel` | `event.form.messages.ticketsUnavailable.message` | `event.form.messages.ticketsUnavailable.exploreEventsActionLabel` | `event.summaries.rsvps.totalCount` | `event.summaries.rsvps.yesCount` | `event.summaries.rsvps.noCount` | `event.summaries.rsvps.waitlistCount` | `event.summaries.tickets.ticketsSold` | `event.summaries.tickets.revenue.amount` | `event.summaries.tickets.revenue.currency` | `event.summaries.tickets.currencyLocked` | `event.summaries.tickets.totalOrders` | `event.instanceId` | `event.guestListSettings.displayedPublicly` | `event.userId` | `event.onlineConferencing.enabled` | `event.onlineConferencing.type` | `event.onlineConferencing.session.hostLink` | `event.onlineConferencing.session.guestLink` | `event.seoSettings.slug` | `event.seoSettings.advancedSeoData.tags` | `event.seoSettings.advancedSeoData.tags.${number}.type` | `event.seoSettings.advancedSeoData.tags.${number}.children` | `event.seoSettings.advancedSeoData.tags.${number}.custom` | `event.seoSettings.advancedSeoData.tags.${number}.disabled` | `event.seoSettings.advancedSeoData.settings.preventAutoRedirect` | `event.seoSettings.advancedSeoData.settings.keywords` | `event.seoSettings.advancedSeoData.settings.keywords.${number}.term` | `event.seoSettings.advancedSeoData.settings.keywords.${number}.isMain` | `event.agendaSettings.enabled`, 8>>;
|